summaryrefslogtreecommitdiff
path: root/node_modules/thirty-two/README.md
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-08-10 10:38:44 +0200
committerMinteck <contact@minteck.org>2022-08-10 10:38:44 +0200
commitc6dbf0450566c40efc4a26f4f0717452b6ef95cd (patch)
treeb4be2d508223820d0a77d5a3e35e82684da3b6ec /node_modules/thirty-two/README.md
downloadhornchat-c6dbf0450566c40efc4a26f4f0717452b6ef95cd.tar.gz
hornchat-c6dbf0450566c40efc4a26f4f0717452b6ef95cd.tar.bz2
hornchat-c6dbf0450566c40efc4a26f4f0717452b6ef95cd.zip
Initial commitHEADmane
Diffstat (limited to 'node_modules/thirty-two/README.md')
-rw-r--r--node_modules/thirty-two/README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/node_modules/thirty-two/README.md b/node_modules/thirty-two/README.md
new file mode 100644
index 0000000..fd81e38
--- /dev/null
+++ b/node_modules/thirty-two/README.md
@@ -0,0 +1,15 @@
+# thirty-two
+
+Implementation of RFC 3548 Base32 encoding/decoding for node.
+
+## Installation
+
+ npm install thirty-two
+
+## Usage
+
+ var base32 = require('thirty-two');
+ base32.encode('node');
+ // output: NZXWIZI=
+ base32.decode('NZXWIZI=');
+ //output: node