uuid-token-generator
Advanced tools
Comparing version 0.4.2 to 0.5.0
@@ -38,3 +38,3 @@ 'use strict'; | ||
TokenGenerator.BASE62 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; | ||
TokenGenerator.BASE70 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!()*-._~'; | ||
TokenGenerator.BASE66 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~'; | ||
TokenGenerator.BASE71 = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!'()*-._~"; | ||
@@ -41,0 +41,0 @@ |
{ | ||
"name": "uuid-token-generator", | ||
"version": "0.4.2", | ||
"version": "0.5.0", | ||
"description": "Generates random tokens with custom size and base-encoding using the RFC 4122 v4 UUID algorithm", | ||
@@ -37,3 +37,3 @@ "homepage": "https://github.com/nwoltman/uuid-token-generator", | ||
"grunt-eslint": "^18.0.0", | ||
"grunt-mocha-istanbul": "^4.0.2", | ||
"grunt-mocha-istanbul": "^5.0.1", | ||
"grunt-mocha-test": "^0.12.7", | ||
@@ -43,4 +43,4 @@ "istanbul": "^0.4.3", | ||
"mocha": "^2.4.5", | ||
"should": "^8.3.1" | ||
"should": "^9.0.0" | ||
} | ||
} |
@@ -69,6 +69,6 @@ # UUID Token Generator | ||
### TokenGenerator.BASE70 : `String` | ||
`0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!()*-._~` | ||
### TokenGenerator.BASE66 : `String` | ||
`0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-._~` | ||
(all ASCII characters that are not escaped by `encodeURIComponent()` except single quotes `'`) | ||
(all ASCII characters that do not need to be encoded in a URI as specified by [RFC 3986](http://tools.ietf.org/html/rfc3986)) | ||
@@ -78,3 +78,3 @@ ### TokenGenerator.BASE71 : `String` | ||
(all ASCII characters that are not escaped by `encodeURIComponent()`) | ||
(all ASCII characters that are not encoded by `encodeURIComponent()`) | ||
@@ -81,0 +81,0 @@ --- |
9254