Y7000\张扬阳 a3d544af32 重新写新计划之前的版本 пре 2 недеља
..
index.js a3d544af32 重新写新计划之前的版本 пре 2 недеља
license a3d544af32 重新写新计划之前的版本 пре 2 недеља
package.json a3d544af32 重新写新计划之前的版本 пре 2 недеља
readme.md a3d544af32 重新写新计划之前的版本 пре 2 недеља

readme.md

strict-uri-encode Build Status

A stricter URI encode adhering to RFC 3986

Install

$ npm install --save strict-uri-encode

Usage

const strictUriEncode = require('strict-uri-encode');

strictUriEncode('unicorn!foobar');
//=> 'unicorn%21foobar'

strictUriEncode('unicorn*foobar');
//=> 'unicorn%2Afoobar'

API

strictUriEncode(string)

string

Type: string, number

String to URI encode.

License

MIT © Kevin Mårtensson