summaryrefslogtreecommitdiff
path: root/node_modules/thirty-two/README.md
blob: fd81e38ba42110615a1e4cbbc9300e0ed0eaa14b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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