mirror of https://github.com/qntm/base65536
Compare commits
No commits in common. "cfff88c50aedf8f00ec66c891ac6faf2beecec73" and "0d4094d74603e595fab5679336d303549c1838b6" have entirely different histories.
cfff88c50a
...
0d4094d746
|
@ -141,7 +141,7 @@ console.log(uint8Array2);
|
||||||
Load this file in the browser to gain access to a `base65536` global.
|
Load this file in the browser to gain access to a `base65536` global.
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<script src='https://unpkg.com/base65536@3/dist/iife/base65536.js' crossorigin></script>
|
<script src='https://unpkg.com/base65536' crossorigin></script>
|
||||||
<script>
|
<script>
|
||||||
console.log(base65536.decode('驨ꍬ啯𒁷ꍲᕤ'))
|
console.log(base65536.decode('驨ꍬ啯𒁷ꍲᕤ'))
|
||||||
</script>
|
</script>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "base65536",
|
"name": "base65536",
|
||||||
"version": "3.0.2",
|
"version": "3.0.1",
|
||||||
"description": "Unicode's answer to Base64",
|
"description": "Unicode's answer to Base64",
|
||||||
"module": "dist/es6/base65536.js",
|
"module": "dist/es6/base65536.js",
|
||||||
"main": "dist/cjs/base65536.js",
|
"main": "dist/cjs/base65536.js",
|
||||||
"types": "typings/index.d.ts",
|
"types": "typings/index.d.ts",
|
||||||
|
"browser": "dist/iife/base65536.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"jest": "jest",
|
"jest": "jest",
|
||||||
"rollup": "rollup",
|
"rollup": "rollup",
|
||||||
|
@ -28,7 +29,7 @@
|
||||||
"glob": "^7.1.6",
|
"glob": "^7.1.6",
|
||||||
"jest": "^25.1.0",
|
"jest": "^25.1.0",
|
||||||
"rollup": "^1.31.0",
|
"rollup": "^1.31.0",
|
||||||
"standard": "^14.3.3"
|
"standard": "^10.0.3"
|
||||||
},
|
},
|
||||||
"babel": {
|
"babel": {
|
||||||
"presets": [
|
"presets": [
|
||||||
|
|
Loading…
Reference in New Issue