Skip to content

Commit 5fd183d

Browse files
committed
version 3.7.8
1 parent fa94481 commit 5fd183d

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

3131
This 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

base64.d.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
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
*/

base64.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
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
*/

base64.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
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
*/

base64.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
*/

base64.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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
*/

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)