prc b6c02717e6 Upload complete no-internet building environment. | před 1 rokem | |
---|---|---|
.. | ||
index.js | před 1 rokem | |
license | před 1 rokem | |
package.json | před 1 rokem | |
readme.md | před 1 rokem |
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