js-base64 2.4.5 → 2.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -655,7 +655,7 @@ var matchSigned = /[+-]?\d+/; // -inf - inf
655
655
  var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z
656
656
  var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z
657
657
 
658
- var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123
658
+ var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 12.4.8789 123456789.123
659
659
 
660
660
  // any word (or two) characters or numbers including two/three word month in arabic.
661
661
  // includes scottish gaelic two word and hyphenated months
File without changes
package/README.md CHANGED
@@ -13,10 +13,10 @@ $ npm install --save js-base64
13
13
  If you are using it on ES6 transpilers, you may also need:
14
14
 
15
15
  ```javascript
16
- $ npm install --save babel-preset-es2015
16
+ $ npm install --save babel-preset-env
17
17
  ```
18
18
 
19
- Note `js-base64` itself is stand-alone so its `package.json` has no `dependencies`.  However, it is also tested on ES6 environment so `"babel-preset-es2015": "^6.24.1"` is on `devDependencies`.
19
+ Note `js-base64` itself is stand-alone so its `package.json` has no `dependencies`.  However, it is also tested on ES6 environment so `"babel-preset-env": "^1.7.0"` is on `devDependencies`.
20
20
 
21
21
 
22
22
  ## Usage
package/base64.html CHANGED
@@ -3,10 +3,10 @@
3
3
  <html>
4
4
  <head>
5
5
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6
- <title>Test for base64.js</title>
6
+ <title>Demo for base64.js</title>
7
7
  </head>
8
8
  <body>
9
- <h1>Test for base64.js</h1>
9
+ <h1>Demo for base64.js</h1>
10
10
  <p>$Id: base64.html,v 1.1 2009/03/01 22:00:28 dankogai Exp dankogai $</p>
11
11
  <table width="640"><tbody>
12
12
  <tr><th width="50%">Text</th><th>Base64
@@ -14,7 +14,7 @@
14
14
  <tr>
15
15
  <th><textarea id="srctxt" cols="32" rows="4" onkeyup="doit()">
16
16
  </textarea></th>
17
- <th><textarea id="base64" cols=32" rows="4" onkeyup="
17
+ <th><textarea id="base64" cols="32" rows="4" onkeyup="
18
18
  $('srctxt').value = Base64.decode(this.value);
19
19
  doit();
20
20
  if (1 /*@cc_on -1 @*/) $('data').src = 'data:text/plain;base64,' + this.value;
@@ -44,4 +44,4 @@ function doit(){
44
44
  }
45
45
  </script>
46
46
  </body>
47
- </html>
47
+ </html>
package/base64.js CHANGED
@@ -21,13 +21,15 @@
21
21
  'use strict';
22
22
  // existing version for noConflict()
23
23
  var _Base64 = global.Base64;
24
- var version = "2.4.5";
25
- // if node.js, we use Buffer
24
+ var version = "2.4.9";
25
+ // if node.js and NOT React Native, we use Buffer
26
26
  var buffer;
27
27
  if (typeof module !== 'undefined' && module.exports) {
28
28
  try {
29
- buffer = require('buffer').Buffer;
30
- } catch (err) {}
29
+ buffer = eval("require('buffer').Buffer");
30
+ } catch (err) {
31
+ buffer = undefined;
32
+ }
31
33
  }
32
34
  // constants
33
35
  var b64chars
@@ -186,7 +188,8 @@
186
188
  encodeURI: encodeURI,
187
189
  btou: btou,
188
190
  decode: decode,
189
- noConflict: noConflict
191
+ noConflict: noConflict,
192
+ __buffer__: buffer
190
193
  };
191
194
  // if ES5 is available, make Base64.extendString() available
192
195
  if (typeof Object.defineProperty === 'function') {
package/base64.min.js CHANGED
@@ -1 +1 @@
1
- (function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?module.exports=factory(global):typeof define==="function"&&define.amd?define(factory):factory(global)})(typeof self!=="undefined"?self:typeof window!=="undefined"?window:typeof global!=="undefined"?global:this,function(global){"use strict";var _Base64=global.Base64;var version="2.4.5";var buffer;if(typeof module!=="undefined"&&module.exports){try{buffer=require("buffer").Buffer}catch(err){}}var b64chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";var b64tab=function(bin){var t={};for(var i=0,l=bin.length;i<l;i++)t[bin.charAt(i)]=i;return t}(b64chars);var fromCharCode=String.fromCharCode;var cb_utob=function(c){if(c.length<2){var cc=c.charCodeAt(0);return cc<128?c:cc<2048?fromCharCode(192|cc>>>6)+fromCharCode(128|cc&63):fromCharCode(224|cc>>>12&15)+fromCharCode(128|cc>>>6&63)+fromCharCode(128|cc&63)}else{var cc=65536+(c.charCodeAt(0)-55296)*1024+(c.charCodeAt(1)-56320);return fromCharCode(240|cc>>>18&7)+fromCharCode(128|cc>>>12&63)+fromCharCode(128|cc>>>6&63)+fromCharCode(128|cc&63)}};var re_utob=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g;var utob=function(u){return u.replace(re_utob,cb_utob)};var cb_encode=function(ccc){var padlen=[0,2,1][ccc.length%3],ord=ccc.charCodeAt(0)<<16|(ccc.length>1?ccc.charCodeAt(1):0)<<8|(ccc.length>2?ccc.charCodeAt(2):0),chars=[b64chars.charAt(ord>>>18),b64chars.charAt(ord>>>12&63),padlen>=2?"=":b64chars.charAt(ord>>>6&63),padlen>=1?"=":b64chars.charAt(ord&63)];return chars.join("")};var btoa=global.btoa?function(b){return global.btoa(b)}:function(b){return b.replace(/[\s\S]{1,3}/g,cb_encode)};var _encode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(u){return(u.constructor===buffer.constructor?u:buffer.from(u)).toString("base64")}:function(u){return(u.constructor===buffer.constructor?u:new buffer(u)).toString("base64")}:function(u){return btoa(utob(u))};var encode=function(u,urisafe){return!urisafe?_encode(String(u)):_encode(String(u)).replace(/[+\/]/g,function(m0){return m0=="+"?"-":"_"}).replace(/=/g,"")};var encodeURI=function(u){return encode(u,true)};var re_btou=new RegExp(["[À-ß][€-¿]","[à-ï][€-¿]{2}","[ð-÷][€-¿]{3}"].join("|"),"g");var cb_btou=function(cccc){switch(cccc.length){case 4:var cp=(7&cccc.charCodeAt(0))<<18|(63&cccc.charCodeAt(1))<<12|(63&cccc.charCodeAt(2))<<6|63&cccc.charCodeAt(3),offset=cp-65536;return fromCharCode((offset>>>10)+55296)+fromCharCode((offset&1023)+56320);case 3:return fromCharCode((15&cccc.charCodeAt(0))<<12|(63&cccc.charCodeAt(1))<<6|63&cccc.charCodeAt(2));default:return fromCharCode((31&cccc.charCodeAt(0))<<6|63&cccc.charCodeAt(1))}};var btou=function(b){return b.replace(re_btou,cb_btou)};var cb_decode=function(cccc){var len=cccc.length,padlen=len%4,n=(len>0?b64tab[cccc.charAt(0)]<<18:0)|(len>1?b64tab[cccc.charAt(1)]<<12:0)|(len>2?b64tab[cccc.charAt(2)]<<6:0)|(len>3?b64tab[cccc.charAt(3)]:0),chars=[fromCharCode(n>>>16),fromCharCode(n>>>8&255),fromCharCode(n&255)];chars.length-=[0,0,2,1][padlen];return chars.join("")};var atob=global.atob?function(a){return global.atob(a)}:function(a){return a.replace(/[\s\S]{1,4}/g,cb_decode)};var _decode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(a){return(a.constructor===buffer.constructor?a:buffer.from(a,"base64")).toString()}:function(a){return(a.constructor===buffer.constructor?a:new buffer(a,"base64")).toString()}:function(a){return btou(atob(a))};var decode=function(a){return _decode(String(a).replace(/[-_]/g,function(m0){return m0=="-"?"+":"/"}).replace(/[^A-Za-z0-9\+\/]/g,""))};var noConflict=function(){var Base64=global.Base64;global.Base64=_Base64;return Base64};global.Base64={VERSION:version,atob:atob,btoa:btoa,fromBase64:decode,toBase64:encode,utob:utob,encode:encode,encodeURI:encodeURI,btou:btou,decode:decode,noConflict:noConflict};if(typeof Object.defineProperty==="function"){var noEnum=function(v){return{value:v,enumerable:false,writable:true,configurable:true}};global.Base64.extendString=function(){Object.defineProperty(String.prototype,"fromBase64",noEnum(function(){return decode(this)}));Object.defineProperty(String.prototype,"toBase64",noEnum(function(urisafe){return encode(this,urisafe)}));Object.defineProperty(String.prototype,"toBase64URI",noEnum(function(){return encode(this,true)}))}}if(global["Meteor"]){Base64=global.Base64}if(typeof module!=="undefined"&&module.exports){module.exports.Base64=global.Base64}else if(typeof define==="function"&&define.amd){define([],function(){return global.Base64})}return{Base64:global.Base64}});
1
+ (function(global,factory){typeof exports==="object"&&typeof module!=="undefined"?module.exports=factory(global):typeof define==="function"&&define.amd?define(factory):factory(global)})(typeof self!=="undefined"?self:typeof window!=="undefined"?window:typeof global!=="undefined"?global:this,function(global){"use strict";var _Base64=global.Base64;var version="2.4.9";var buffer;if(typeof module!=="undefined"&&module.exports){try{buffer=eval("require('buffer').Buffer")}catch(err){buffer=undefined}}var b64chars="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";var b64tab=function(bin){var t={};for(var i=0,l=bin.length;i<l;i++)t[bin.charAt(i)]=i;return t}(b64chars);var fromCharCode=String.fromCharCode;var cb_utob=function(c){if(c.length<2){var cc=c.charCodeAt(0);return cc<128?c:cc<2048?fromCharCode(192|cc>>>6)+fromCharCode(128|cc&63):fromCharCode(224|cc>>>12&15)+fromCharCode(128|cc>>>6&63)+fromCharCode(128|cc&63)}else{var cc=65536+(c.charCodeAt(0)-55296)*1024+(c.charCodeAt(1)-56320);return fromCharCode(240|cc>>>18&7)+fromCharCode(128|cc>>>12&63)+fromCharCode(128|cc>>>6&63)+fromCharCode(128|cc&63)}};var re_utob=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g;var utob=function(u){return u.replace(re_utob,cb_utob)};var cb_encode=function(ccc){var padlen=[0,2,1][ccc.length%3],ord=ccc.charCodeAt(0)<<16|(ccc.length>1?ccc.charCodeAt(1):0)<<8|(ccc.length>2?ccc.charCodeAt(2):0),chars=[b64chars.charAt(ord>>>18),b64chars.charAt(ord>>>12&63),padlen>=2?"=":b64chars.charAt(ord>>>6&63),padlen>=1?"=":b64chars.charAt(ord&63)];return chars.join("")};var btoa=global.btoa?function(b){return global.btoa(b)}:function(b){return b.replace(/[\s\S]{1,3}/g,cb_encode)};var _encode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(u){return(u.constructor===buffer.constructor?u:buffer.from(u)).toString("base64")}:function(u){return(u.constructor===buffer.constructor?u:new buffer(u)).toString("base64")}:function(u){return btoa(utob(u))};var encode=function(u,urisafe){return!urisafe?_encode(String(u)):_encode(String(u)).replace(/[+\/]/g,function(m0){return m0=="+"?"-":"_"}).replace(/=/g,"")};var encodeURI=function(u){return encode(u,true)};var re_btou=new RegExp(["[À-ß][€-¿]","[à-ï][€-¿]{2}","[ð-÷][€-¿]{3}"].join("|"),"g");var cb_btou=function(cccc){switch(cccc.length){case 4:var cp=(7&cccc.charCodeAt(0))<<18|(63&cccc.charCodeAt(1))<<12|(63&cccc.charCodeAt(2))<<6|63&cccc.charCodeAt(3),offset=cp-65536;return fromCharCode((offset>>>10)+55296)+fromCharCode((offset&1023)+56320);case 3:return fromCharCode((15&cccc.charCodeAt(0))<<12|(63&cccc.charCodeAt(1))<<6|63&cccc.charCodeAt(2));default:return fromCharCode((31&cccc.charCodeAt(0))<<6|63&cccc.charCodeAt(1))}};var btou=function(b){return b.replace(re_btou,cb_btou)};var cb_decode=function(cccc){var len=cccc.length,padlen=len%4,n=(len>0?b64tab[cccc.charAt(0)]<<18:0)|(len>1?b64tab[cccc.charAt(1)]<<12:0)|(len>2?b64tab[cccc.charAt(2)]<<6:0)|(len>3?b64tab[cccc.charAt(3)]:0),chars=[fromCharCode(n>>>16),fromCharCode(n>>>8&255),fromCharCode(n&255)];chars.length-=[0,0,2,1][padlen];return chars.join("")};var atob=global.atob?function(a){return global.atob(a)}:function(a){return a.replace(/[\s\S]{1,4}/g,cb_decode)};var _decode=buffer?buffer.from&&Uint8Array&&buffer.from!==Uint8Array.from?function(a){return(a.constructor===buffer.constructor?a:buffer.from(a,"base64")).toString()}:function(a){return(a.constructor===buffer.constructor?a:new buffer(a,"base64")).toString()}:function(a){return btou(atob(a))};var decode=function(a){return _decode(String(a).replace(/[-_]/g,function(m0){return m0=="-"?"+":"/"}).replace(/[^A-Za-z0-9\+\/]/g,""))};var noConflict=function(){var Base64=global.Base64;global.Base64=_Base64;return Base64};global.Base64={VERSION:version,atob:atob,btoa:btoa,fromBase64:decode,toBase64:encode,utob:utob,encode:encode,encodeURI:encodeURI,btou:btou,decode:decode,noConflict:noConflict,__buffer__:buffer};if(typeof Object.defineProperty==="function"){var noEnum=function(v){return{value:v,enumerable:false,writable:true,configurable:true}};global.Base64.extendString=function(){Object.defineProperty(String.prototype,"fromBase64",noEnum(function(){return decode(this)}));Object.defineProperty(String.prototype,"toBase64",noEnum(function(urisafe){return encode(this,urisafe)}));Object.defineProperty(String.prototype,"toBase64URI",noEnum(function(){return encode(this,true)}))}}if(global["Meteor"]){Base64=global.Base64}if(typeof module!=="undefined"&&module.exports){module.exports.Base64=global.Base64}else if(typeof define==="function"&&define.amd){define([],function(){return global.Base64})}return{Base64:global.Base64}});
package/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "js-base64",
3
- "version": "2.4.5",
3
+ "version": "2.4.9",
4
4
  "license": "BSD-3-Clause",
5
5
  "main": [
6
6
  "./base64.js"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "js-base64",
3
- "version": "2.4.5",
3
+ "version": "2.4.9",
4
4
  "description": "Yet another Base64 transcoder in pure-JS",
5
5
  "main": "base64.js",
6
6
  "directories": {
@@ -10,7 +10,7 @@
10
10
  "test": "mocha --compilers js:babel-register"
11
11
  },
12
12
  "devDependencies": {
13
- "babel-preset-es2015": "^6.24.1",
13
+ "babel-preset-env": "^1.7.0",
14
14
  "babel-register": "^6.26.0",
15
15
  "mocha": "*"
16
16
  },
package/test/index.html CHANGED
@@ -13,7 +13,7 @@
13
13
  <script>
14
14
  mocha.setup('bdd');
15
15
  </script>
16
- <script src="../base64.min.js"></script>
16
+ <script src="../base64.js"></script>
17
17
  <script>
18
18
  var assert = function(expr, msg) {
19
19
  if (!expr) throw new Error(msg || 'failed');
package/base64.js,v DELETED
@@ -1,343 +0,0 @@
1
- head 2.15;
2
- access;
3
- symbols;
4
- locks
5
- dankogai:2.15; strict;
6
- comment @# @;
7
-
8
-
9
- 2.15
10
- date 2014.04.05.12.58.57; author dankogai; state Exp;
11
- branches;
12
- next 2.12;
13
-
14
- 2.12
15
- date 2013.05.06.07.54.20; author dankogai; state Exp;
16
- branches;
17
- next 2.11;
18
-
19
- 2.11
20
- date 2013.04.08.12.27.14; author dankogai; state Exp;
21
- branches;
22
- next 2.10;
23
-
24
- 2.10
25
- date 2013.04.08.09.37.27; author dankogai; state Exp;
26
- branches;
27
- next 2.7;
28
-
29
- 2.7
30
- date 2013.04.06.15.34.42; author dankogai; state Exp;
31
- branches;
32
- next ;
33
-
34
-
35
- desc
36
- @@
37
-
38
-
39
- 2.15
40
- log
41
- @*** empty log message ***
42
- @
43
- text
44
- @/*
45
- * $Id: base64.js,v 2.12 2013/05/06 07:54:20 dankogai Exp dankogai $
46
- *
47
- * Licensed under the MIT license.
48
- * http://opensource.org/licenses/mit-license
49
- *
50
- * References:
51
- * http://en.wikipedia.org/wiki/Base64
52
- */
53
-
54
- (function(global) {
55
- 'use strict';
56
- // existing version for noConflict()
57
- var _Base64 = global.Base64;
58
- var version = "2.1.5";
59
- // if node.js, we use Buffer
60
- var buffer;
61
- if (typeof module !== 'undefined' && module.exports) {
62
- buffer = require('buffer').Buffer;
63
- }
64
- // constants
65
- var b64chars
66
- = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
67
- var b64tab = function(bin) {
68
- var t = {};
69
- for (var i = 0, l = bin.length; i < l; i++) t[bin.charAt(i)] = i;
70
- return t;
71
- }(b64chars);
72
- var fromCharCode = String.fromCharCode;
73
- // encoder stuff
74
- var cb_utob = function(c) {
75
- if (c.length < 2) {
76
- var cc = c.charCodeAt(0);
77
- return cc < 0x80 ? c
78
- : cc < 0x800 ? (fromCharCode(0xc0 | (cc >>> 6))
79
- + fromCharCode(0x80 | (cc & 0x3f)))
80
- : (fromCharCode(0xe0 | ((cc >>> 12) & 0x0f))
81
- + fromCharCode(0x80 | ((cc >>> 6) & 0x3f))
82
- + fromCharCode(0x80 | ( cc & 0x3f)));
83
- } else {
84
- var cc = 0x10000
85
- + (c.charCodeAt(0) - 0xD800) * 0x400
86
- + (c.charCodeAt(1) - 0xDC00);
87
- return (fromCharCode(0xf0 | ((cc >>> 18) & 0x07))
88
- + fromCharCode(0x80 | ((cc >>> 12) & 0x3f))
89
- + fromCharCode(0x80 | ((cc >>> 6) & 0x3f))
90
- + fromCharCode(0x80 | ( cc & 0x3f)));
91
- }
92
- };
93
- var re_utob = /[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g;
94
- var utob = function(u) {
95
- return u.replace(re_utob, cb_utob);
96
- };
97
- var cb_encode = function(ccc) {
98
- var padlen = [0, 2, 1][ccc.length % 3],
99
- ord = ccc.charCodeAt(0) << 16
100
- | ((ccc.length > 1 ? ccc.charCodeAt(1) : 0) << 8)
101
- | ((ccc.length > 2 ? ccc.charCodeAt(2) : 0)),
102
- chars = [
103
- b64chars.charAt( ord >>> 18),
104
- b64chars.charAt((ord >>> 12) & 63),
105
- padlen >= 2 ? '=' : b64chars.charAt((ord >>> 6) & 63),
106
- padlen >= 1 ? '=' : b64chars.charAt(ord & 63)
107
- ];
108
- return chars.join('');
109
- };
110
- var btoa = global.btoa ? function(b) {
111
- return global.btoa(b);
112
- } : function(b) {
113
- return b.replace(/[\s\S]{1,3}/g, cb_encode);
114
- };
115
- var _encode = buffer
116
- ? function (u) { return (new buffer(u)).toString('base64') }
117
- : function (u) { return btoa(utob(u)) }
118
- ;
119
- var encode = function(u, urisafe) {
120
- return !urisafe
121
- ? _encode(u)
122
- : _encode(u).replace(/[+\/]/g, function(m0) {
123
- return m0 == '+' ? '-' : '_';
124
- }).replace(/=/g, '');
125
- };
126
- var encodeURI = function(u) { return encode(u, true) };
127
- // decoder stuff
128
- var re_btou = new RegExp([
129
- '[\xC0-\xDF][\x80-\xBF]',
130
- '[\xE0-\xEF][\x80-\xBF]{2}',
131
- '[\xF0-\xF7][\x80-\xBF]{3}'
132
- ].join('|'), 'g');
133
- var cb_btou = function(cccc) {
134
- switch(cccc.length) {
135
- case 4:
136
- var cp = ((0x07 & cccc.charCodeAt(0)) << 18)
137
- | ((0x3f & cccc.charCodeAt(1)) << 12)
138
- | ((0x3f & cccc.charCodeAt(2)) << 6)
139
- | (0x3f & cccc.charCodeAt(3)),
140
- offset = cp - 0x10000;
141
- return (fromCharCode((offset >>> 10) + 0xD800)
142
- + fromCharCode((offset & 0x3FF) + 0xDC00));
143
- case 3:
144
- return fromCharCode(
145
- ((0x0f & cccc.charCodeAt(0)) << 12)
146
- | ((0x3f & cccc.charCodeAt(1)) << 6)
147
- | (0x3f & cccc.charCodeAt(2))
148
- );
149
- default:
150
- return fromCharCode(
151
- ((0x1f & cccc.charCodeAt(0)) << 6)
152
- | (0x3f & cccc.charCodeAt(1))
153
- );
154
- }
155
- };
156
- var btou = function(b) {
157
- return b.replace(re_btou, cb_btou);
158
- };
159
- var cb_decode = function(cccc) {
160
- var len = cccc.length,
161
- padlen = len % 4,
162
- n = (len > 0 ? b64tab[cccc.charAt(0)] << 18 : 0)
163
- | (len > 1 ? b64tab[cccc.charAt(1)] << 12 : 0)
164
- | (len > 2 ? b64tab[cccc.charAt(2)] << 6 : 0)
165
- | (len > 3 ? b64tab[cccc.charAt(3)] : 0),
166
- chars = [
167
- fromCharCode( n >>> 16),
168
- fromCharCode((n >>> 8) & 0xff),
169
- fromCharCode( n & 0xff)
170
- ];
171
- chars.length -= [0, 0, 2, 1][padlen];
172
- return chars.join('');
173
- };
174
- var atob = global.atob ? function(a) {
175
- return global.atob(a);
176
- } : function(a){
177
- return a.replace(/[\s\S]{1,4}/g, cb_decode);
178
- };
179
- var _decode = buffer
180
- ? function(a) { return (new buffer(a, 'base64')).toString() }
181
- : function(a) { return btou(atob(a)) };
182
- var decode = function(a){
183
- return _decode(
184
- a.replace(/[-_]/g, function(m0) { return m0 == '-' ? '+' : '/' })
185
- .replace(/[^A-Za-z0-9\+\/]/g, '')
186
- );
187
- };
188
- var noConflict = function() {
189
- var Base64 = global.Base64;
190
- global.Base64 = _Base64;
191
- return Base64;
192
- };
193
- // export Base64
194
- global.Base64 = {
195
- VERSION: version,
196
- atob: atob,
197
- btoa: btoa,
198
- fromBase64: decode,
199
- toBase64: encode,
200
- utob: utob,
201
- encode: encode,
202
- encodeURI: encodeURI,
203
- btou: btou,
204
- decode: decode,
205
- noConflict: noConflict
206
- };
207
- // if ES5 is available, make Base64.extendString() available
208
- if (typeof Object.defineProperty === 'function') {
209
- var noEnum = function(v){
210
- return {value:v,enumerable:false,writable:true,configurable:true};
211
- };
212
- global.Base64.extendString = function () {
213
- Object.defineProperty(
214
- String.prototype, 'fromBase64', noEnum(function () {
215
- return decode(this)
216
- }));
217
- Object.defineProperty(
218
- String.prototype, 'toBase64', noEnum(function (urisafe) {
219
- return encode(this, urisafe)
220
- }));
221
- Object.defineProperty(
222
- String.prototype, 'toBase64URI', noEnum(function () {
223
- return encode(this, true)
224
- }));
225
- };
226
- }
227
- // that's it!
228
- })(this);
229
-
230
- if (this['Meteor']) {
231
- Base64 = global.Base64; // for normal export in Meteor.js
232
- }
233
- @
234
-
235
-
236
- 2.12
237
- log
238
- @*** empty log message ***
239
- @
240
- text
241
- @d2 1
242
- a2 1
243
- * $Id: base64.js,v 2.11 2013/04/08 12:27:14 dankogai Exp dankogai $
244
- d13 3
245
- a15 2
246
- if (global.Base64) return;
247
- var version = "2.1.2";
248
- d67 3
249
- a69 1
250
- var btoa = global.btoa || function(b) {
251
- d131 3
252
- a133 1
253
- var atob = global.atob || function(a){
254
- d145 5
255
- d161 2
256
- a162 1
257
- decode: decode
258
- d186 4
259
- @
260
-
261
-
262
- 2.11
263
- log
264
- @*** empty log message ***
265
- @
266
- text
267
- @d2 1
268
- a2 1
269
- * $Id: base64.js,v 2.10 2013/04/08 09:37:27 dankogai Exp dankogai $
270
- d14 1
271
- a14 1
272
- var version = "2.1.1";
273
- @
274
-
275
-
276
- 2.10
277
- log
278
- @*** empty log message ***
279
- @
280
- text
281
- @d2 1
282
- a2 1
283
- * $Id: base64.js,v 2.7 2013/04/06 15:34:42 dankogai Exp dankogai $
284
- d5 1
285
- a5 1
286
- * http://www.opensource.org/licenses/mit-license.php
287
- d14 1
288
- a14 1
289
- var version = "2.0.7";
290
- d88 2
291
- a89 2
292
- var l = cccc.length;
293
- if (l > 3) {
294
- d97 1
295
- a97 1
296
- } else if (l > 2) {
297
- d103 1
298
- a103 1
299
- } else {
300
- d167 4
301
- @
302
-
303
-
304
- 2.7
305
- log
306
- @*** empty log message ***
307
- @
308
- text
309
- @d2 1
310
- a2 1
311
- * $Id: base64.js,v 1.1 2013/04/06 15:33:49 dankogai Exp dankogai $
312
- d31 17
313
- a47 7
314
- var cc = c.charCodeAt(0);
315
- return cc < 0x80 ? c
316
- : cc < 0x800 ? fromCharCode(0xc0 | (cc >>> 6))
317
- + fromCharCode(0x80 | (cc & 0x3f))
318
- : fromCharCode(0xe0 | ((cc >>> 12) & 0x0f))
319
- + fromCharCode(0x80 | ((cc >>> 6) & 0x3f))
320
- + fromCharCode(0x80 | ( cc & 0x3f));
321
- d49 1
322
- d51 1
323
- a51 1
324
- return u.replace(/[^\x00-\x7F]/g, cb_utob);
325
- d78 1
326
- a78 1
327
- });
328
- d82 27
329
- a108 9
330
- var re_btou = /[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}/g;
331
- var cb_btou = function(ccc) {
332
- return fromCharCode(
333
- ccc.length < 3 ? ((0x1f & ccc.charCodeAt(0)) << 6)
334
- | (0x3f & ccc.charCodeAt(1))
335
- : ((0x0f & ccc.charCodeAt(0)) << 12)
336
- | ((0x3f & ccc.charCodeAt(1)) << 6)
337
- | (0x3f & ccc.charCodeAt(2))
338
- );
339
- d133 1
340
- a133 2
341
- : function(a) { return btou(atob(a)) }
342
- ;
343
- @
package/base64_utf8 DELETED
@@ -1,217 +0,0 @@
1
- ;(function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined'
3
- ? module.exports = factory(global)
4
- : typeof define === 'function' && define.amd
5
- ? define(factory) : factory(global)
6
- }((
7
- typeof self !== 'undefined' ? self
8
- : typeof window !== 'undefined' ? window
9
- : typeof global !== 'undefined' ? global
10
- : this
11
- ), function(global) {
12
- 'use strict';
13
- // existing version for noConflict()
14
- var _Base64 = global.Base64;
15
- var version = "2.4.5";
16
- // if node.js, we use Buffer
17
- var buffer;
18
- if (typeof module !== 'undefined' && module.exports) {
19
- try {
20
- buffer = require('buffer').Buffer;
21
- } catch (err) {}
22
- }
23
- // constants
24
- var b64chars
25
- = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
26
- var b64tab = function(bin) {
27
- var t = {};
28
- for (var i = 0, l = bin.length; i < l; i++) t[bin.charAt(i)] = i;
29
- return t;
30
- }(b64chars);
31
- var fromCharCode = String.fromCharCode;
32
- // encoder stuff
33
- var cb_utob = function(c) {
34
- if (c.length < 2) {
35
- var cc = c.charCodeAt(0);
36
- return cc < 0x80 ? c
37
- : cc < 0x800 ? (fromCharCode(0xc0 | (cc >>> 6))
38
- + fromCharCode(0x80 | (cc & 0x3f)))
39
- : (fromCharCode(0xe0 | ((cc >>> 12) & 0x0f))
40
- + fromCharCode(0x80 | ((cc >>> 6) & 0x3f))
41
- + fromCharCode(0x80 | ( cc & 0x3f)));
42
- } else {
43
- var cc = 0x10000
44
- + (c.charCodeAt(0) - 0xD800) * 0x400
45
- + (c.charCodeAt(1) - 0xDC00);
46
- return (fromCharCode(0xf0 | ((cc >>> 18) & 0x07))
47
- + fromCharCode(0x80 | ((cc >>> 12) & 0x3f))
48
- + fromCharCode(0x80 | ((cc >>> 6) & 0x3f))
49
- + fromCharCode(0x80 | ( cc & 0x3f)));
50
- }
51
- };
52
- var re_utob = /[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g;
53
- var utob = function(u) {
54
- return u.replace(re_utob, cb_utob);
55
- };
56
- var cb_encode = function(ccc) {
57
- var padlen = [0, 2, 1][ccc.length % 3],
58
- ord = ccc.charCodeAt(0) << 16
59
- | ((ccc.length > 1 ? ccc.charCodeAt(1) : 0) << 8)
60
- | ((ccc.length > 2 ? ccc.charCodeAt(2) : 0)),
61
- chars = [
62
- b64chars.charAt( ord >>> 18),
63
- b64chars.charAt((ord >>> 12) & 63),
64
- padlen >= 2 ? '=' : b64chars.charAt((ord >>> 6) & 63),
65
- padlen >= 1 ? '=' : b64chars.charAt(ord & 63)
66
- ];
67
- return chars.join('');
68
- };
69
- var btoa = global.btoa ? function(b) {
70
- return global.btoa(b);
71
- } : function(b) {
72
- return b.replace(/[\s\S]{1,3}/g, cb_encode);
73
- };
74
- var _encode = buffer ?
75
- buffer.from && buffer.from !== Uint8Array.from ? function (u) {
76
- return (u.constructor === buffer.constructor ? u : buffer.from(u))
77
- .toString('base64')
78
- }
79
- : function (u) {
80
- return (u.constructor === buffer.constructor ? u : new buffer(u))
81
- .toString('base64')
82
- }
83
- : function (u) { return btoa(utob(u)) }
84
- ;
85
- var encode = function(u, urisafe) {
86
- return !urisafe
87
- ? _encode(String(u))
88
- : _encode(String(u)).replace(/[+\/]/g, function(m0) {
89
- return m0 == '+' ? '-' : '_';
90
- }).replace(/=/g, '');
91
- };
92
- var encodeURI = function(u) { return encode(u, true) };
93
- // decoder stuff
94
- var re_btou = new RegExp([
95
- '[\xC0-\xDF][\x80-\xBF]',
96
- '[\xE0-\xEF][\x80-\xBF]{2}',
97
- '[\xF0-\xF7][\x80-\xBF]{3}'
98
- ].join('|'), 'g');
99
- var cb_btou = function(cccc) {
100
- switch(cccc.length) {
101
- case 4:
102
- var cp = ((0x07 & cccc.charCodeAt(0)) << 18)
103
- | ((0x3f & cccc.charCodeAt(1)) << 12)
104
- | ((0x3f & cccc.charCodeAt(2)) << 6)
105
- | (0x3f & cccc.charCodeAt(3)),
106
- offset = cp - 0x10000;
107
- return (fromCharCode((offset >>> 10) + 0xD800)
108
- + fromCharCode((offset & 0x3FF) + 0xDC00));
109
- case 3:
110
- return fromCharCode(
111
- ((0x0f & cccc.charCodeAt(0)) << 12)
112
- | ((0x3f & cccc.charCodeAt(1)) << 6)
113
- | (0x3f & cccc.charCodeAt(2))
114
- );
115
- default:
116
- return fromCharCode(
117
- ((0x1f & cccc.charCodeAt(0)) << 6)
118
- | (0x3f & cccc.charCodeAt(1))
119
- );
120
- }
121
- };
122
- var btou = function(b) {
123
- return b.replace(re_btou, cb_btou);
124
- };
125
- var cb_decode = function(cccc) {
126
- var len = cccc.length,
127
- padlen = len % 4,
128
- n = (len > 0 ? b64tab[cccc.charAt(0)] << 18 : 0)
129
- | (len > 1 ? b64tab[cccc.charAt(1)] << 12 : 0)
130
- | (len > 2 ? b64tab[cccc.charAt(2)] << 6 : 0)
131
- | (len > 3 ? b64tab[cccc.charAt(3)] : 0),
132
- chars = [
133
- fromCharCode( n >>> 16),
134
- fromCharCode((n >>> 8) & 0xff),
135
- fromCharCode( n & 0xff)
136
- ];
137
- chars.length -= [0, 0, 2, 1][padlen];
138
- return chars.join('');
139
- };
140
- var atob = global.atob ? function(a) {
141
- return global.atob(a);
142
- } : function(a){
143
- return a.replace(/[\s\S]{1,4}/g, cb_decode);
144
- };
145
- var _decode = buffer ?
146
- buffer.from && buffer.from !== Uint8Array.from ? function(a) {
147
- return (a.constructor === buffer.constructor
148
- ? a : buffer.from(a, 'base64')).toString();
149
- }
150
- : function(a) {
151
- return (a.constructor === buffer.constructor
152
- ? a : new buffer(a, 'base64')).toString();
153
- }
154
- : function(a) { return btou(atob(a)) };
155
- var decode = function(a){
156
- return _decode(
157
- String(a).replace(/[-_]/g, function(m0) { return m0 == '-' ? '+' : '/' })
158
- .replace(/[^A-Za-z0-9\+\/]/g, '')
159
- );
160
- };
161
- var noConflict = function() {
162
- var Base64 = global.Base64;
163
- global.Base64 = _Base64;
164
- return Base64;
165
- };
166
- // export Base64
167
- global.Base64 = {
168
- VERSION: version,
169
- atob: atob,
170
- btoa: btoa,
171
- fromBase64: decode,
172
- toBase64: encode,
173
- utob: utob,
174
- encode: encode,
175
- encodeURI: encodeURI,
176
- btou: btou,
177
- decode: decode,
178
- noConflict: noConflict
179
- };
180
- // if ES5 is available, make Base64.extendString() available
181
- if (typeof Object.defineProperty === 'function') {
182
- var noEnum = function(v){
183
- return {value:v,enumerable:false,writable:true,configurable:true};
184
- };
185
- global.Base64.extendString = function () {
186
- Object.defineProperty(
187
- String.prototype, 'fromBase64', noEnum(function () {
188
- return decode(this)
189
- }));
190
- Object.defineProperty(
191
- String.prototype, 'toBase64', noEnum(function (urisafe) {
192
- return encode(this, urisafe)
193
- }));
194
- Object.defineProperty(
195
- String.prototype, 'toBase64URI', noEnum(function () {
196
- return encode(this, true)
197
- }));
198
- };
199
- }
200
- //
201
- // export Base64 to the namespace
202
- //
203
- if (global['Meteor']) { // Meteor.js
204
- Base64 = global.Base64;
205
- }
206
- // module.exports and AMD are mutually exclusive.
207
- // module.exports has precedence.
208
- if (typeof module !== 'undefined' && module.exports) {
209
- module.exports.Base64 = global.Base64;
210
- }
211
- else if (typeof define === 'function' && define.amd) {
212
- // AMD. Register as an anonymous module.
213
- define([], function(){ return global.Base64 });
214
- }
215
- // that's it!
216
- return {Base64: global.Base64}
217
- }));
package/old/base64-1.7.js DELETED
@@ -1,237 +0,0 @@
1
- /*
2
- * $Id: base64.js,v 1.7 2012/08/23 10:30:18 dankogai Exp dankogai $
3
- *
4
- * Licensed under the MIT license.
5
- * http://www.opensource.org/licenses/mit-license.php
6
- *
7
- * References:
8
- * http://en.wikipedia.org/wiki/Base64
9
- */
10
-
11
- (function(global){
12
-
13
- var b64chars
14
- = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
15
-
16
- var b64charcodes = function(){
17
- var a = [];
18
- var codeA = 'A'.charCodeAt(0);
19
- var codea = 'a'.charCodeAt(0);
20
- var code0 = '0'.charCodeAt(0);
21
- for (var i = 0; i < 26; i ++) a.push(codeA + i);
22
- for (var i = 0; i < 26; i ++) a.push(codea + i);
23
- for (var i = 0; i < 10; i ++) a.push(code0 + i);
24
- a.push('+'.charCodeAt(0));
25
- a.push('/'.charCodeAt(0));
26
- return a;
27
- }();
28
-
29
- var b64tab = function(bin){
30
- var t = {};
31
- for (var i = 0, l = bin.length; i < l; i++) t[bin.charAt(i)] = i;
32
- return t;
33
- }(b64chars);
34
-
35
- var stringToArray = function(s){
36
- var a = [];
37
- for (var i = 0, l = s.length; i < l; i ++) a[i] = s.charCodeAt(i);
38
- return a;
39
- };
40
-
41
- var convertUTF8ArrayToBase64 = function(bin){
42
- var padlen = 0;
43
- while (bin.length % 3){
44
- bin.push(0);
45
- padlen++;
46
- };
47
- var b64 = [];
48
- for (var i = 0, l = bin.length; i < l; i += 3){
49
- var c0 = bin[i], c1 = bin[i+1], c2 = bin[i+2];
50
- if (c0 >= 256 || c1 >= 256 || c2 >= 256)
51
- throw 'unsupported character found';
52
- var n = (c0 << 16) | (c1 << 8) | c2;
53
- b64.push(
54
- b64charcodes[ n >>> 18],
55
- b64charcodes[(n >>> 12) & 63],
56
- b64charcodes[(n >>> 6) & 63],
57
- b64charcodes[ n & 63]
58
- );
59
- }
60
- while (padlen--) b64[b64.length - padlen - 1] = '='.charCodeAt(0);
61
- return chunkStringFromCharCodeApply(b64);
62
- };
63
-
64
- var convertBase64ToUTF8Array = function(b64){
65
- b64 = b64.replace(/[^A-Za-z0-9+\/]+/g, '');
66
- var bin = [];
67
- var padlen = b64.length % 4;
68
- for (var i = 0, l = b64.length; i < l; i += 4){
69
- var n = ((b64tab[b64.charAt(i )] || 0) << 18)
70
- | ((b64tab[b64.charAt(i+1)] || 0) << 12)
71
- | ((b64tab[b64.charAt(i+2)] || 0) << 6)
72
- | ((b64tab[b64.charAt(i+3)] || 0));
73
- bin.push(
74
- ( n >> 16 ),
75
- ( (n >> 8) & 0xff ),
76
- ( n & 0xff )
77
- );
78
- }
79
- bin.length -= [0,0,2,1][padlen];
80
- return bin;
81
- };
82
-
83
- var convertUTF16ArrayToUTF8Array = function(uni){
84
- var bin = [];
85
- for (var i = 0, l = uni.length; i < l; i++){
86
- var n = uni[i];
87
- if (n < 0x80)
88
- bin.push(n);
89
- else if (n < 0x800)
90
- bin.push(
91
- 0xc0 | (n >>> 6),
92
- 0x80 | (n & 0x3f));
93
- else
94
- bin.push(
95
- 0xe0 | ((n >>> 12) & 0x0f),
96
- 0x80 | ((n >>> 6) & 0x3f),
97
- 0x80 | (n & 0x3f));
98
- }
99
- return bin;
100
- };
101
-
102
- var convertUTF8ArrayToUTF16Array = function(bin){
103
- var uni = [];
104
- for (var i = 0, l = bin.length; i < l; i++){
105
- var c0 = bin[i];
106
- if (c0 < 0x80){
107
- uni.push(c0);
108
- }else{
109
- var c1 = bin[++i];
110
- if (c0 < 0xe0){
111
- uni.push(((c0 & 0x1f) << 6) | (c1 & 0x3f));
112
- }else{
113
- var c2 = bin[++i];
114
- uni.push(
115
- ((c0 & 0x0f) << 12) | ((c1 & 0x3f) << 6) | (c2 & 0x3f)
116
- );
117
- }
118
- }
119
- }
120
- return uni;
121
- };
122
-
123
- var convertUTF8StringToBase64 = function(bin){
124
- return convertUTF8ArrayToBase64(stringToArray(bin));
125
- };
126
-
127
- var convertBase64ToUTF8String = function(b64){
128
- return chunkStringFromCharCodeApply(convertBase64ToUTF8Array(b64));
129
- };
130
-
131
- var convertUTF8StringToUTF16Array = function(bin){
132
- return convertUTF8ArrayToUTF16Array(stringToArray(bin));
133
- };
134
-
135
- var convertUTF8ArrayToUTF16String = function(bin){
136
- return chunkStringFromCharCodeApply(convertUTF8ArrayToUTF16Array(bin));
137
- };
138
-
139
- var convertUTF8StringToUTF16String = function(bin){
140
- return chunkStringFromCharCodeApply(
141
- convertUTF8ArrayToUTF16Array(stringToArray(bin))
142
- );
143
- };
144
-
145
- var convertUTF16StringToUTF8Array = function(uni){
146
- return convertUTF16ArrayToUTF8Array(stringToArray(uni));
147
- };
148
-
149
- var convertUTF16ArrayToUTF8String = function(uni){
150
- return chunkStringFromCharCodeApply(convertUTF16ArrayToUTF8Array(uni));
151
- };
152
-
153
- var convertUTF16StringToUTF8String = function(uni){
154
- return chunkStringFromCharCodeApply(
155
- convertUTF16ArrayToUTF8Array(stringToArray(uni))
156
- );
157
- };
158
-
159
- /*
160
- * String.fromCharCode.apply will only handle arrays as big as 65536,
161
- * after that it'll return a truncated string with no warning.
162
- */
163
- var chunkStringFromCharCodeApply = function(arr){
164
- var strs = [], i;
165
- for (i = 0; i < arr.length; i += 65536){
166
- strs.push(String.fromCharCode.apply(String, arr.slice(i, i+65536)));
167
- }
168
- return strs.join('');
169
- };
170
-
171
- if (global.btoa){
172
- var btoa = global.btoa;
173
- var convertUTF16StringToBase64 = function (uni){
174
- return btoa(convertUTF16StringToUTF8String(uni));
175
- };
176
- }
177
- else {
178
- var btoa = convertUTF8StringToBase64;
179
- var convertUTF16StringToBase64 = function (uni){
180
- return convertUTF8ArrayToBase64(convertUTF16StringToUTF8Array(uni));
181
- };
182
- }
183
-
184
- if (global.atob){
185
- var atob = global.atob;
186
- var convertBase64ToUTF16String = function (b64){
187
- return convertUTF8StringToUTF16String(atob(b64));
188
- };
189
- }
190
- else {
191
- var atob = convertBase64ToUTF8String;
192
- var convertBase64ToUTF16String = function (b64){
193
- return convertUTF8ArrayToUTF16String(convertBase64ToUTF8Array(b64));
194
- };
195
- }
196
-
197
- global.Base64 = {
198
- convertUTF8ArrayToBase64:convertUTF8ArrayToBase64,
199
- convertByteArrayToBase64:convertUTF8ArrayToBase64,
200
- convertBase64ToUTF8Array:convertBase64ToUTF8Array,
201
- convertBase64ToByteArray:convertBase64ToUTF8Array,
202
- convertUTF16ArrayToUTF8Array:convertUTF16ArrayToUTF8Array,
203
- convertUTF16ArrayToByteArray:convertUTF16ArrayToUTF8Array,
204
- convertUTF8ArrayToUTF16Array:convertUTF8ArrayToUTF16Array,
205
- convertByteArrayToUTF16Array:convertUTF8ArrayToUTF16Array,
206
- convertUTF8StringToBase64:convertUTF8StringToBase64,
207
- convertBase64ToUTF8String:convertBase64ToUTF8String,
208
- convertUTF8StringToUTF16Array:convertUTF8StringToUTF16Array,
209
- convertUTF8ArrayToUTF16String:convertUTF8ArrayToUTF16String,
210
- convertByteArrayToUTF16String:convertUTF8ArrayToUTF16String,
211
- convertUTF8StringToUTF16String:convertUTF8StringToUTF16String,
212
- convertUTF16StringToUTF8Array:convertUTF16StringToUTF8Array,
213
- convertUTF16StringToByteArray:convertUTF16StringToUTF8Array,
214
- convertUTF16ArrayToUTF8String:convertUTF16ArrayToUTF8String,
215
- convertUTF16StringToUTF8String:convertUTF16StringToUTF8String,
216
- convertUTF16StringToBase64:convertUTF16StringToBase64,
217
- convertBase64ToUTF16String:convertBase64ToUTF16String,
218
- fromBase64:convertBase64ToUTF8String,
219
- toBase64:convertUTF8StringToBase64,
220
- atob:atob,
221
- btoa:btoa,
222
- utob:convertUTF16StringToUTF8String,
223
- btou:convertUTF8StringToUTF16String,
224
- encode:convertUTF16StringToBase64,
225
- encodeURI:function(u){
226
- return convertUTF16StringToBase64(u).replace(/[+\/]/g, function(m0){
227
- return m0 == '+' ? '-' : '_';
228
- }).replace(/=+$/, '');
229
- },
230
- decode:function(a){
231
- return convertBase64ToUTF16String(a.replace(/[-_]/g, function(m0){
232
- return m0 == '-' ? '+' : '/';
233
- }));
234
- }
235
- };
236
-
237
- })(this);
package/test/index.html,v DELETED
@@ -1,63 +0,0 @@
1
- head 0.3;
2
- access;
3
- symbols;
4
- locks
5
- dankogai:0.3; strict;
6
- comment @# @;
7
-
8
-
9
- 0.3
10
- date 2017.09.11.08.43.43; author dankogai; state Exp;
11
- branches;
12
- next ;
13
-
14
-
15
- desc
16
- @@
17
-
18
-
19
- 0.3
20
- log
21
- @*** empty log message ***
22
- @
23
- text
24
- @<html>
25
- <head>
26
- <meta charset="utf-8">
27
- <title>Mocha Tests</title>
28
- <link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
29
- </head>
30
- <body>
31
- <div id="mocha"></div>
32
-
33
- <script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
34
- <script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
35
- <script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
36
- <script>
37
- mocha.setup('bdd');
38
- </script>
39
- <script src="../base64.js"></script>
40
- <script>
41
- var assert = function(expr, msg) {
42
- if (!expr) throw new Error(msg || 'failed');
43
- };
44
- assert.equal = function(a, b, msg) {
45
- if (a !== b) throw new Error(msg || ('failed : '+a+','+b));
46
- };
47
- </script>
48
- <script src="./dankogai.js"></script>
49
- <script src="./es5.js"></script>
50
- <script src="./large.js"></script>
51
- <script src="./yoshinoya.js"></script>
52
- <script>
53
- $(function() {
54
- mocha.run();
55
- });
56
- </script>
57
- </head>
58
- <body>
59
- $Id: index.html,v 1.1 2017/09/11 08:42:23 dankogai Exp dankogai $
60
- <div id="mocha"></div>
61
- </body>
62
- </html>
63
- @