xtf c3c218391a 药品分类 11 ماه پیش
..
index.js c3c218391a 药品分类 11 ماه پیش
license c3c218391a 药品分类 11 ماه پیش
package.json c3c218391a 药品分类 11 ماه پیش
readme.md c3c218391a 药品分类 11 ماه پیش

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