mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 10:26:08 -07:00
666 B
666 B
strict-uri-encode
A stricter URI encode adhering to RFC 3986
Install
$ npm install --save strict-uri-encode
Usage
var strictUriEncode = require('strict-uri-encode');
strictUriEncode('unicorn!foobar')
//=> 'unicorn%21foobar'
strictUriEncode('unicorn*foobar')
//=> 'unicorn%2Afoobar'
API
strictUriEncode(string)
string
Required
Type: string
, number
String to URI encode.
License
MIT © Kevin Mårtensson