|
пре 3 недеља | |
---|---|---|
.. | ||
index.js | пре 3 недеља | |
license | пре 3 недеља | |
package.json | пре 3 недеља | |
readme.md | пре 3 недеља |
A stricter URI encode adhering to RFC 3986
$ npm install --save strict-uri-encode
const strictUriEncode = require('strict-uri-encode');
strictUriEncode('unicorn!foobar');
//=> 'unicorn%21foobar'
strictUriEncode('unicorn*foobar');
//=> 'unicorn%2Afoobar'
Type: string
, number
String to URI encode.
MIT © Kevin Mårtensson