js-base64 2.4.1 → 2.4.5

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.
package/README.md CHANGED
@@ -4,6 +4,21 @@
4
4
 
5
5
  Yet another Base64 transcoder
6
6
 
7
+ ## Install
8
+
9
+ ```javascript
10
+ $ npm install --save js-base64
11
+ ```
12
+
13
+ If you are using it on ES6 transpilers, you may also need:
14
+
15
+ ```javascript
16
+ $ npm install --save babel-preset-es2015
17
+ ```
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`.
20
+
21
+
7
22
  ## Usage
8
23
 
9
24
  ### In Browser
@@ -24,13 +39,6 @@ var Base64 = require('js-base64').Base64;
24
39
  import { Base64 } from 'js-base64';
25
40
  ```
26
41
 
27
- ### npm
28
-
29
- ```javascript
30
- $ npm install --save js-base64
31
- ```
32
-
33
-
34
42
  ## SYNOPSIS
35
43
 
36
44
  ```javascript
package/base64.js CHANGED
@@ -11,7 +11,7 @@
11
11
  typeof exports === 'object' && typeof module !== 'undefined'
12
12
  ? module.exports = factory(global)
13
13
  : typeof define === 'function' && define.amd
14
- ? define(factory) : null
14
+ ? define(factory) : factory(global)
15
15
  }((
16
16
  typeof self !== 'undefined' ? self
17
17
  : typeof window !== 'undefined' ? window
@@ -21,7 +21,7 @@
21
21
  'use strict';
22
22
  // existing version for noConflict()
23
23
  var _Base64 = global.Base64;
24
- var version = "2.4.1";
24
+ var version = "2.4.5";
25
25
  // if node.js, we use Buffer
26
26
  var buffer;
27
27
  if (typeof module !== 'undefined' && module.exports) {
@@ -81,7 +81,8 @@
81
81
  return b.replace(/[\s\S]{1,3}/g, cb_encode);
82
82
  };
83
83
  var _encode = buffer ?
84
- buffer.from && buffer.from !== Uint8Array.from ? function (u) {
84
+ buffer.from && Uint8Array && buffer.from !== Uint8Array.from
85
+ ? function (u) {
85
86
  return (u.constructor === buffer.constructor ? u : buffer.from(u))
86
87
  .toString('base64')
87
88
  }
@@ -152,7 +153,8 @@
152
153
  return a.replace(/[\s\S]{1,4}/g, cb_decode);
153
154
  };
154
155
  var _decode = buffer ?
155
- buffer.from && buffer.from !== Uint8Array.from ? function(a) {
156
+ buffer.from && Uint8Array && buffer.from !== Uint8Array.from
157
+ ? function(a) {
156
158
  return (a.constructor === buffer.constructor
157
159
  ? a : buffer.from(a, 'base64')).toString();
158
160
  }
@@ -1,33 +1,65 @@
1
- /*
2
- * $Id: base64.js,v 2.15 2014/04/05 12:58:57 dankogai Exp dankogai $
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 $
3
46
  *
4
- * Licensed under the BSD 3-Clause License.
5
- * http://opensource.org/licenses/BSD-3-Clause
47
+ * Licensed under the MIT license.
48
+ * http://opensource.org/licenses/mit-license
6
49
  *
7
50
  * References:
8
51
  * http://en.wikipedia.org/wiki/Base64
9
52
  */
10
- ;(function (global, factory) {
11
- typeof exports === 'object' && typeof module !== 'undefined'
12
- ? module.exports = factory(global)
13
- : typeof define === 'function' && define.amd
14
- ? define(factory) : null
15
- }((
16
- typeof self !== 'undefined' ? self
17
- : typeof window !== 'undefined' ? window
18
- : typeof global !== 'undefined' ? global
19
- : this
20
- ), function(global) {
53
+
54
+ (function(global) {
21
55
  'use strict';
22
56
  // existing version for noConflict()
23
57
  var _Base64 = global.Base64;
24
- var version = "2.4.0";
58
+ var version = "2.1.5";
25
59
  // if node.js, we use Buffer
26
60
  var buffer;
27
61
  if (typeof module !== 'undefined' && module.exports) {
28
- try {
29
- buffer = require('buffer').Buffer;
30
- } catch (err) {}
62
+ buffer = require('buffer').Buffer;
31
63
  }
32
64
  // constants
33
65
  var b64chars
@@ -80,21 +112,14 @@
80
112
  } : function(b) {
81
113
  return b.replace(/[\s\S]{1,3}/g, cb_encode);
82
114
  };
83
- var _encode = buffer ?
84
- buffer.from && buffer.from !== Uint8Array.from ? function (u) {
85
- return (u.constructor === buffer.constructor ? u : buffer.from(u))
86
- .toString('base64')
87
- }
88
- : function (u) {
89
- return (u.constructor === buffer.constructor ? u : new buffer(u))
90
- .toString('base64')
91
- }
92
- : function (u) { return btoa(utob(u)) }
115
+ var _encode = buffer
116
+ ? function (u) { return (new buffer(u)).toString('base64') }
117
+ : function (u) { return btoa(utob(u)) }
93
118
  ;
94
119
  var encode = function(u, urisafe) {
95
- return !urisafe
96
- ? _encode(String(u))
97
- : _encode(String(u)).replace(/[+\/]/g, function(m0) {
120
+ return !urisafe
121
+ ? _encode(u)
122
+ : _encode(u).replace(/[+\/]/g, function(m0) {
98
123
  return m0 == '+' ? '-' : '_';
99
124
  }).replace(/=/g, '');
100
125
  };
@@ -151,19 +176,12 @@
151
176
  } : function(a){
152
177
  return a.replace(/[\s\S]{1,4}/g, cb_decode);
153
178
  };
154
- var _decode = buffer ?
155
- buffer.from && buffer.from !== Uint8Array.from ? function(a) {
156
- return (a.constructor === buffer.constructor
157
- ? a : buffer.from(a, 'base64')).toString();
158
- }
159
- : function(a) {
160
- return (a.constructor === buffer.constructor
161
- ? a : new buffer(a, 'base64')).toString();
162
- }
163
- : function(a) { return btou(atob(a)) };
179
+ var _decode = buffer
180
+ ? function(a) { return (new buffer(a, 'base64')).toString() }
181
+ : function(a) { return btou(atob(a)) };
164
182
  var decode = function(a){
165
183
  return _decode(
166
- String(a).replace(/[-_]/g, function(m0) { return m0 == '-' ? '+' : '/' })
184
+ a.replace(/[-_]/g, function(m0) { return m0 == '-' ? '+' : '/' })
167
185
  .replace(/[^A-Za-z0-9\+\/]/g, '')
168
186
  );
169
187
  };
@@ -206,21 +224,120 @@
206
224
  }));
207
225
  };
208
226
  }
209
- //
210
- // export Base64 to the namespace
211
- //
212
- if (global['Meteor']) { // Meteor.js
213
- Base64 = global.Base64;
214
- }
215
- // module.exports and AMD are mutually exclusive.
216
- // module.exports has precedence.
217
- if (typeof module !== 'undefined' && module.exports) {
218
- module.exports.Base64 = global.Base64;
219
- }
220
- else if (typeof define === 'function' && define.amd) {
221
- // AMD. Register as an anonymous module.
222
- define([], function(){ return global.Base64 });
223
- }
224
227
  // that's it!
225
- return {Base64: global.Base64}
226
- }));
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.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):null})(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.1";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&&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&&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.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}});
package/base64_utf8 CHANGED
@@ -2,7 +2,7 @@
2
2
  typeof exports === 'object' && typeof module !== 'undefined'
3
3
  ? module.exports = factory(global)
4
4
  : typeof define === 'function' && define.amd
5
- ? define(factory) : null
5
+ ? define(factory) : factory(global)
6
6
  }((
7
7
  typeof self !== 'undefined' ? self
8
8
  : typeof window !== 'undefined' ? window
@@ -12,7 +12,7 @@
12
12
  'use strict';
13
13
  // existing version for noConflict()
14
14
  var _Base64 = global.Base64;
15
- var version = "2.4.1";
15
+ var version = "2.4.5";
16
16
  // if node.js, we use Buffer
17
17
  var buffer;
18
18
  if (typeof module !== 'undefined' && module.exports) {
@@ -208,8 +208,8 @@
208
208
  if (typeof module !== 'undefined' && module.exports) {
209
209
  module.exports.Base64 = global.Base64;
210
210
  }
211
- else if (typeof define === 'function' && define.amd) {
212
- // AMD. Register as an anonymous module.
211
+ else if (typeof define === 'function' && define.amd) {
212
+ // AMD. Register as an anonymous module.
213
213
  define([], function(){ return global.Base64 });
214
214
  }
215
215
  // that's it!
package/bower.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "js-base64",
3
- "version": "2.4.1",
3
+ "version": "2.4.5",
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.1",
3
+ "version": "2.4.5",
4
4
  "description": "Yet another Base64 transcoder in pure-JS",
5
5
  "main": "base64.js",
6
6
  "directories": {
@@ -0,0 +1,63 @@
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
+ @
File without changes
@@ -0,0 +1,24 @@
1
+ /*
2
+ * $Id: es5.js,v 0.1 2012/08/23 19:43:17 dankogai Exp dankogai $
3
+ *
4
+ * use mocha to test me
5
+ * http://visionmedia.github.com/mocha/
6
+ */
7
+ var assert = assert || require("assert");
8
+ var Base64 = Base64 || require('../base64.js').Base64;
9
+ var is = function (a, e, m) {
10
+ return function () {
11
+ assert.equal(a, e, m)
12
+ }
13
+ };
14
+
15
+ if ('extendString' in Base64){
16
+ Base64.extendString();
17
+ describe('String', function () {
18
+ it('.toBase64', is('小飼弾'.toBase64(), '5bCP6aO85by+'));
19
+ it('.toBase64', is('小飼弾'.toBase64(true), '5bCP6aO85by-'));
20
+ it('.toBase64URI', is('小飼弾'.toBase64URI(), '5bCP6aO85by-'));
21
+ it('.fromBase64', is('5bCP6aO85by+'.fromBase64(), '小飼弾'));
22
+ it('.fromBase64', is('5bCP6aO85by-'.fromBase64(), '小飼弾'));
23
+ });
24
+ }
@@ -0,0 +1,25 @@
1
+ /*
2
+ * $Id: es6.js,v 0.1 2017/11/29 21:43:17 ufolux Exp ufolux $
3
+ *
4
+ * use mocha to test me
5
+ * http://visionmedia.github.com/mocha/
6
+ */
7
+ import {Base64} from '../base64'
8
+
9
+ var assert = assert || require("assert");
10
+ var is = function (a, e, m) {
11
+ return function () {
12
+ assert.equal(a, e, m)
13
+ }
14
+ };
15
+
16
+ if ('extendString' in Base64){
17
+ Base64.extendString();
18
+ describe('String', function () {
19
+ it('.toBase64', is('小飼弾'.toBase64(), '5bCP6aO85by+'));
20
+ it('.toBase64', is('小飼弾'.toBase64(true), '5bCP6aO85by-'));
21
+ it('.toBase64URI', is('小飼弾'.toBase64URI(), '5bCP6aO85by-'));
22
+ it('.fromBase64', is('5bCP6aO85by+'.fromBase64(), '小飼弾'));
23
+ it('.fromBase64', is('5bCP6aO85by-'.fromBase64(), '小飼弾'));
24
+ });
25
+ }
@@ -0,0 +1,40 @@
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Mocha Tests</title>
5
+ <link href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" rel="stylesheet" />
6
+ </head>
7
+ <body>
8
+ <div id="mocha"></div>
9
+
10
+ <script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
11
+ <script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
12
+ <script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
13
+ <script>
14
+ mocha.setup('bdd');
15
+ </script>
16
+ <script src="./moment.js"></script>
17
+ <script src="../base64.js"></script>
18
+ <script>
19
+ var assert = function(expr, msg) {
20
+ if (!expr) throw new Error(msg || 'failed');
21
+ };
22
+ assert.equal = function(a, b, msg) {
23
+ if (a !== b) throw new Error(msg || ('failed : '+a+','+b));
24
+ };
25
+ </script>
26
+ <script src="./dankogai.js"></script>
27
+ <script src="./es5.js"></script>
28
+ <script src="./large.js"></script>
29
+ <script src="./yoshinoya.js"></script>
30
+ <script>
31
+ $(function() {
32
+ mocha.run();
33
+ });
34
+ </script>
35
+ </head>
36
+ <body>
37
+ $Id: index.html,v 0.3 2017/09/11 08:43:43 dankogai Exp dankogai $
38
+ <div id="mocha"></div>
39
+ </body>
40
+ </html>
@@ -0,0 +1,25 @@
1
+ /*
2
+ * $Id: large.js,v 0.3 2012/08/23 19:14:37 dankogai Exp dankogai $
3
+ *
4
+ * use mocha to test me
5
+ * http://visionmedia.github.com/mocha/
6
+ */
7
+ var assert = assert || require("assert");
8
+ var Base64 = Base64 || require('../base64.js').Base64;
9
+ var is = function (a, e, m) {
10
+ return function () {
11
+ assert.equal(a, e, m)
12
+ }
13
+ };
14
+ var seed = function () {
15
+ var a, i;
16
+ for (a = [], i = 0; i < 256; i++) {
17
+ a.push(String.fromCharCode(i));
18
+ }
19
+ return a.join('');
20
+ }();
21
+ describe('Base64', function () {
22
+ for (var i = 0, str = seed; i < 16; str += str, i++) {
23
+ it(''+str.length, is(Base64.decode(Base64.encode(str)), str));
24
+ }
25
+ });