innovationDriveApp/node_modules/strict-uri-encode
2018-07-08 19:21:40 +10:00
..
index.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
license added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
package.json added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
readme.md added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00

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