Implementation RFC 3548 Base32 encoding/decoding for node.
npm install thirty-two-p5Implementation of RFC 3548 Base32 encoding/decoding for node.
javascript
import base32 from "thirty-two";base32.encode('node').toString();
// output: NZXWIZI=
base32.decode('NZXWIZI=');
//output: node
``