@pshaw/strict-uri-encode
v2.0.2
Published
A stricter URI encode adhering to RFC 3986
Downloads
128
Readme
strict-uri-encode
A stricter URI encode adhering to RFC 3986
Install
$ npm install strict-uri-encode
Usage
const strictUriEncode = require('strict-uri-encode');
strictUriEncode('unicorn!foobar');
//=> 'unicorn%21foobar'
strictUriEncode('unicorn*foobar');
//=> 'unicorn%2Afoobar'
API
strictUriEncode(string)
string
Type: string
number
String to URI encode.
License
MIT © Kevin Mårtensson