刘琳琳 97c35fdf0d 航汇HHArome小程序容器演示 | hace 2 meses | |
---|---|---|
.. | ||
index.js | hace 2 meses | |
license | hace 2 meses | |
package.json | hace 2 meses | |
readme.md | hace 2 meses |
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