removed a whole passel of files that do not need to be tracked in the repository
[kcls-web.git] / js / ui / default / acq / common / base64.js
diff --git a/js/ui/default/acq/common/base64.js b/js/ui/default/acq/common/base64.js
deleted file mode 100644 (file)
index 6d62cc7..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-dojo.require("dojox.encoding.base64");
-
-function base64Encode(o) {
-    return dojox.encoding.base64.encode(
-        js2JSON(o).split("").map(function(c) { return c.charCodeAt(0); })
-    );
-}
-
-function base64Decode(s) {
-    return JSON2js(
-        dojox.encoding.base64.decode(s).map(
-            function(b) { return String.fromCharCode(b); }
-        ).join("")
-    );
-}