mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 14:40:10 +00:00
![]() PR-URL: https://github.com/nodejs/node/pull/20190 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> |
||
---|---|---|
.. | ||
index.js | ||
license | ||
package.json | ||
readme.md |
strict-uri-encode 
A stricter URI encode adhering to RFC 3986
Install
$ npm install --save 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