blob: d9368c8eeb48a8bf6f3f0a817666eb8682fd5cf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# base64-url
Base64 encode, decode, escape and unescape for URL applications.
<a href="https://nodei.co/npm/base64-url/"><img src="https://nodei.co/npm/base64-url.png?downloads=true"></a>
[](https://travis-ci.org/joaquimserafim/base64-url)
## API
```js
base64url.encode('Node.js is awesome.');
// returns Tm9kZS5qcyBpcyBhd2Vzb21lLg
base64url.decode('Tm9kZS5qcyBpcyBhd2Vzb21lLg');
// returns Node.js is awesome.
base64url.escape('This+is/goingto+escape==');
// returns This-is_goingto-escape
base64url.unescape('This-is_goingto-escape');
// returns This+is/goingto+escape==
```
## Development
**this projet has been set up with a precommit that forces you to follow a code style, no jshint issues and 100% of code coverage before commit**
to run test
``` js
npm test
```
to run jshint
``` js
npm run jshint
```
to run code style
``` js
npm run code-style
```
to check code coverage
``` js
npm run check-coverage
```
to open the code coverage report
``` js
npm run coverage
```
|