Comparing version 3.4.4 to 3.4.5
@@ -12,7 +12,7 @@ /** | ||
*/ | ||
declare const version = "3.4.4"; | ||
declare const version = "3.4.5"; | ||
/** | ||
* @deprecated use lowercase `version`. | ||
*/ | ||
declare const VERSION = "3.4.4"; | ||
declare const VERSION = "3.4.5"; | ||
/** | ||
@@ -19,0 +19,0 @@ * polyfill version of `btoa` |
@@ -43,3 +43,3 @@ | ||
*/ | ||
const version = '3.4.4'; | ||
const version = '3.4.5'; | ||
/** | ||
@@ -105,3 +105,3 @@ * @deprecated use lowercase `version`. | ||
} | ||
return btoa(strs.join('')); | ||
return _btoa(strs.join('')); | ||
}; | ||
@@ -108,0 +108,0 @@ /** |
{ | ||
"name": "js-base64", | ||
"version": "3.4.4", | ||
"version": "3.4.5", | ||
"description": "Yet another Base64 transcoder in pure-JS", | ||
@@ -5,0 +5,0 @@ "main": "base64.js", |
@@ -32,3 +32,3 @@ [![build status](https://secure.travis-ci.org/dankogai/js-base64.png)](http://travis-ci.org/dankogai/js-base64) | ||
```html | ||
<script src="https://cdn.jsdelivr.net/npm/js-base64@3.4.4/base64.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/js-base64@3.4.5/base64.min.js"></script> | ||
``` | ||
@@ -56,3 +56,3 @@ | ||
// note jsdelivr.net does not automatically minify .mjs | ||
import { Base64 } from 'https://cdn.jsdelivr.net/npm/js-base64@3.4.4/base64.mjs'; | ||
import { Base64 } from 'https://cdn.jsdelivr.net/npm/js-base64@3.4.5/base64.mjs'; | ||
</script> | ||
@@ -64,3 +64,3 @@ ``` | ||
// or if you prefer no Base64 namespace | ||
import { encode, decode } from 'https://cdn.jsdelivr.net/npm/js-base64@3.4.4/base64.mjs'; | ||
import { encode, decode } from 'https://cdn.jsdelivr.net/npm/js-base64@3.4.5/base64.mjs'; | ||
</script> | ||
@@ -67,0 +67,0 @@ ``` |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26675