Irina Glushko 2389e7160b HW1 done | 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
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