From c6dbf0450566c40efc4a26f4f0717452b6ef95cd Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 10 Aug 2022 10:38:44 +0200 Subject: Initial commit --- node_modules/thirty-two/README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 node_modules/thirty-two/README.md (limited to 'node_modules/thirty-two/README.md') 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 -- cgit