prc b6c02717e6 Upload complete no-internet building environment. | hace 1 año | |
---|---|---|
.. | ||
index.js | hace 1 año | |
license | hace 1 año | |
package.json | hace 1 año | |
readme.md | hace 1 año |
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