|
||||
---|---|---|---|---|
.. | ||||
index.js | 11e3a9652a | 7 ans auparavant | ||
license | 11e3a9652a | 7 ans auparavant | ||
package.json | 11e3a9652a | 7 ans auparavant | ||
readme.md | 11e3a9652a | 7 ans auparavant |
A stricter URI encode adhering to RFC 3986
$ npm install --save strict-uri-encode
var strictUriEncode = require('strict-uri-encode');
strictUriEncode('unicorn!foobar')
//=> 'unicorn%21foobar'
strictUriEncode('unicorn*foobar')
//=> 'unicorn%2Afoobar'
Required
Type: string
, number
String to URI encode.
MIT © Kevin Mårtensson