summaryrefslogtreecommitdiffstats
path: root/node_modules/atob/README.md
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/atob/README.md
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/atob/README.md')
-rw-r--r--node_modules/atob/README.md49
1 files changed, 0 insertions, 49 deletions
diff --git a/node_modules/atob/README.md b/node_modules/atob/README.md
deleted file mode 100644
index e15ef86..0000000
--- a/node_modules/atob/README.md
+++ /dev/null
@@ -1,49 +0,0 @@
-atob
-===
-
-| **atob**
-| [btoa](https://git.coolaj86.com/coolaj86/btoa.js)
-| [unibabel.js](https://git.coolaj86.com/coolaj86/unibabel.js)
-| Sponsored by [ppl](https://ppl.family)
-
-Uses `Buffer` to emulate the exact functionality of the browser's atob.
-
-Note: Unicode may be handled incorrectly (like the browser).
-
-It turns base64-encoded <strong>a</strong>scii data back **to** <strong>b</strong>inary.
-
-```javascript
-(function () {
- "use strict";
-
- var atob = require('atob');
- var b64 = "SGVsbG8sIFdvcmxkIQ==";
- var bin = atob(b64);
-
- console.log(bin); // "Hello, World!"
-}());
-```
-
-### Need Unicode and Binary Support in the Browser?
-
-Check out [unibabel.js](https://git.coolaj86.com/coolaj86/unibabel.js)
-
-Changelog
-=======
-
- * v2.1.0 address a few issues and PRs, update URLs
- * v2.0.0 provide browser version for ios web workers
- * v1.2.0 provide (empty) browser version
- * v1.1.3 add MIT license
- * v1.1.2 node only
-
-LICENSE
-=======
-
-Code copyright 2012-2018 AJ ONeal
-
-Dual-licensed MIT and Apache-2.0
-
-Docs copyright 2012-2018 AJ ONeal
-
-Docs released under [Creative Commons](https://git.coolaj86.com/coolaj86/atob.js/blob/master/LICENSE.DOCS).