vlad 6f123ff03e 18.07 hace 6 años
..
index.js 6f123ff03e 18.07 hace 6 años
license 6f123ff03e 18.07 hace 6 años
package.json 6f123ff03e 18.07 hace 6 años
readme.md 6f123ff03e 18.07 hace 6 años

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