provider/node_modules/strict-uri-encode
Nik Dement'ev b2743b6469
fix: update lint
2020-11-06 14:38:38 +03:00
..
index.js fix: update lint 2020-11-06 14:38:38 +03:00
license fix: update lint 2020-11-06 14:38:38 +03:00
package.json fix: update lint 2020-11-06 14:38:38 +03:00
readme.md fix: update lint 2020-11-06 14:38:38 +03:00

readme.md

strict-uri-encode Build Status

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