File tree Expand file tree Collapse file tree 8 files changed +12
-12
lines changed Expand file tree Collapse file tree 8 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Locally…
2525… or Directly from CDN. In which case you don't even need to install.
2626
2727``` html
28- <script src =" https://cdn.jsdelivr.net/npm/js-base64@3.7.7 /base64.min.js" ></script >
28+ <script src =" https://cdn.jsdelivr.net/npm/js-base64@3.7.8 /base64.min.js" ></script >
2929```
3030
3131This good old way loads ` Base64 ` in the global context (` window ` ). Though ` Base64.noConflict() ` is made available, you should consider using ES6 Module to avoid tainting ` window ` .
@@ -48,14 +48,14 @@ or even remotely.
4848``` html
4949<script type =" module" >
5050// note jsdelivr.net does not automatically minify .mjs
51- import { Base64 } from ' https://cdn.jsdelivr.net/npm/js-base64@3.7.7 /base64.mjs' ;
51+ import { Base64 } from ' https://cdn.jsdelivr.net/npm/js-base64@3.7.8 /base64.mjs' ;
5252 </script >
5353```
5454
5555``` html
5656<script type =" module" >
5757// or if you prefer no Base64 namespace
58- import { encode , decode } from ' https://cdn.jsdelivr.net/npm/js-base64@3.7.7 /base64.mjs' ;
58+ import { encode , decode } from ' https://cdn.jsdelivr.net/npm/js-base64@3.7.8 /base64.mjs' ;
5959 </script >
6060```
6161
Original file line number Diff line number Diff line change 99 *
1010 * @author Dan Kogai (https://github.com/dankogai)
1111 */
12- declare const version = "3.7.7 " ;
12+ declare const version = "3.7.8 " ;
1313/**
1414 * @deprecated use lowercase `version`.
1515 */
16- declare const VERSION = "3.7.7 " ;
16+ declare const VERSION = "3.7.8 " ;
1717/**
1818 * polyfill version of `btoa`
1919 */
Original file line number Diff line number Diff line change 99 *
1010 * @author Dan Kogai (https://github.com/dankogai)
1111 */
12- declare const version = "3.7.7 " ;
12+ declare const version = "3.7.8 " ;
1313/**
1414 * @deprecated use lowercase `version`.
1515 */
16- declare const VERSION = "3.7.7 " ;
16+ declare const VERSION = "3.7.8 " ;
1717/**
1818 * polyfill version of `btoa`
1919 */
Original file line number Diff line number Diff line change 3737 *
3838 * @author Dan Kogai (https://github.com/dankogai)
3939 */
40- var version = '3.7.7 ' ;
40+ var version = '3.7.8 ' ;
4141 /**
4242 * @deprecated use lowercase `version`.
4343 */
Original file line number Diff line number Diff line change 99 *
1010 * @author Dan Kogai (https://github.com/dankogai)
1111 */
12- const version = '3.7.7 ' ;
12+ const version = '3.7.8 ' ;
1313/**
1414 * @deprecated use lowercase `version`.
1515 */
Original file line number Diff line number Diff line change 99 *
1010 * @author Dan Kogai (https://github.com/dankogai)
1111 */
12- const version = '3.7.7 ' ;
12+ const version = '3.7.8 ' ;
1313/**
1414 * @deprecated use lowercase `version`.
1515 */
Original file line number Diff line number Diff line change 11{
22 "name" : " js-base64" ,
3- "version" : " 3.7.7 " ,
3+ "version" : " 3.7.8 " ,
44 "license" : " BSD-3-Clause" ,
55 "main" : [
66 " ./base64.js"
Original file line number Diff line number Diff line change 11{
22 "name" : " js-base64" ,
3- "version" : " 3.7.7 " ,
3+ "version" : " 3.7.8 " ,
44 "description" : " Yet another Base64 transcoder in pure-JS" ,
55 "main" : " base64.js" ,
66 "module" : " base64.mjs" ,
You can’t perform that action at this time.
0 commit comments