Skip to content

Commit 3f097f7

Browse files
authored
Add files via upload
1 parent 44abaad commit 3f097f7

9 files changed

+12
-9
lines changed

atobAndBtoaTogether.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

atobAndBtoaTogether.min.js.gz

-6 Bytes
Binary file not shown.

atobAndBtoaTogether.node.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"use strict";
2-
module.exports = (() => {
2+
module["exports"] = (() => {
33
"use strict";
44
const log = Math.log;
55
const LN2 = Math.LN2;
@@ -26,7 +26,7 @@ module.exports = (() => {
2626
);
2727
} else return fromCharCode(0xef, 0xbf, 0xbd);
2828
}
29-
if (point <= 0x007f) return inputString;
29+
if (point <= 0x007f) return nonAsciiChars;
3030
else if (point <= 0x07ff) {
3131
return fromCharCode((0x6<<5)|(point>>>6), (0x2<<6)|(point&0x3f));
3232
} else return fromCharCode(

atobAndBtoaTogether.node.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

atobAndBtoaTogether.src.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
);
2626
} else return fromCharCode(0xef, 0xbf, 0xbd);
2727
}
28-
if (point <= 0x007f) return inputString;
28+
if (point <= 0x007f) return nonAsciiChars;
2929
else if (point <= 0x07ff) {
3030
return fromCharCode((0x6<<5)|(point>>>6), (0x2<<6)|(point&0x3f));
3131
} else return fromCharCode(

btoaUTF8.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

btoaUTF8.src.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var btoaUTF8 = (function(btoa, replacer){"use strict";
2424
);
2525
} else return fromCharCode(0xef, 0xbf, 0xbd);
2626
}
27-
if (point <= 0x007f) return inputString;
27+
if (point <= 0x007f) return nonAsciiChars;
2828
else if (point <= 0x07ff) {
2929
return fromCharCode((0x6<<5)|(point>>>6), (0x2<<6)|(point&0x3f));
3030
} else return fromCharCode(

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"name":"bestbase64utf8","version":"1.0.0","description":"The most standard, most cross-browser, most compact, and fastest possible btoa and atob solution for unicode strings with high code points. Made by AnonyCo with ❤️ from 🐕s.","keywords":["btoa","atob","utf8","utf-8","base64","javascript","browser","node","node.js","nodejs","library","1kb","fast","performance"],"homepage":"https://github.com/anonyco/BestBase64EncoderDecoder#quick-start","bugs":{"url":"https://github.com/anonyco/BestBase64EncoderDecoder/issues","email":"[email protected]"},"liscence":"Unlicense","author":{"name":"Jack Giffin","email":"[email protected]","url":"http://barnyrubble.tumblr.com/"},"main":"atobAndBtoaTogether.node.js","repository":{"type":"git","url":"https://github.com/anonyco/BestBase64EncoderDecoder.git"},"files":["atobAndBtoaTogether.node.js"]}
1+
{"name":"bestbase64utf8","version":"1.0.1","description":"The most standard, most cross-browser, most compact, and fastest possible btoa and atob solution for unicode strings with high code points. Made by AnonyCo with ❤️ from 🐕s.","keywords":["btoa","atob","utf8","utf-8","base64","javascript","browser","node","node.js","nodejs","library","1kb","fast","performance"],"homepage":"https://github.com/anonyco/BestBase64EncoderDecoder#quick-start","bugs":{"url":"https://github.com/anonyco/BestBase64EncoderDecoder/issues","email":"[email protected]"},"liscence":"Unlicense","author":{"name":"Jack Giffin","email":"[email protected]","url":"https://jackgiffin.com/"},"main":"atobAndBtoaTogether.node.js","repository":{"type":"git","url":"https://github.com/anonyco/BestBase64EncoderDecoder.git"},"files":["atobAndBtoaTogether.node.js"]}

package.src.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bestbase64utf8",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "The most standard, most cross-browser, most compact, and fastest possible btoa and atob solution for unicode strings with high code points. Made by AnonyCo with ❤️ from 🐕s.",
55
"keywords": ["btoa", "atob", "utf8", "utf-8", "base64", "javascript", "browser", "node", "node.js", "nodejs", "library", "1kb", "fast", "performance"],
66
"homepage": "https://github.com/anonyco/BestBase64EncoderDecoder#quick-start",
@@ -12,7 +12,7 @@
1212
"author": {
1313
"name" : "Jack Giffin",
1414
"email" : "[email protected]",
15-
"url" : "http://barnyrubble.tumblr.com/"
15+
"url" : "https://jackgiffin.com/"
1616
},
1717
"main": "atobAndBtoaTogether.node.js",
1818
"repository": {
@@ -21,3 +21,4 @@
2121
},
2222
"files": ["atobAndBtoaTogether.node.js"]
2323
}
24+

0 commit comments

Comments
 (0)