prc b6c02717e6 Upload complete no-internet building environment. 1 жил өмнө
..
index.js b6c02717e6 Upload complete no-internet building environment. 1 жил өмнө
license b6c02717e6 Upload complete no-internet building environment. 1 жил өмнө
package.json b6c02717e6 Upload complete no-internet building environment. 1 жил өмнө
readme.md b6c02717e6 Upload complete no-internet building environment. 1 жил өмнө

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