tibetty / decodeUriComponent

A pretty fast yet robust implementation for decodeURIComponent that supports unicode, now also support other non-standard encoding such as gbk, big5, shift-jis, euc-jp, etc.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

decodeUriComponent

A pretty fast yet robust decodeURIComponent implementation that supports unicode decoding (i.e. %uxxxx). Now also support other custom encodings such as gbk, big5, shift-jis, euc-jp, etc.

Installation

npm install decodeuricomponent

Usage

const decodeUriComponent = require('decodeuricomponent');

console.log(decodeUriComponent('2%2e8i%u624b%u52a85%u901f'));	// --> '2.8i手动5速'
console.log(decodeUriComponent('%e4%b8%ad%e5%9c%8b'));		// --> '中國'
console.log(decodeUriComponent('%b7%fe%d7%b0', 'gbk'));		// --> '服装'

Dependency

  • Use iconv-lite to make encoding conversion;
  • Arrow function feature of ES6

About

A pretty fast yet robust implementation for decodeURIComponent that supports unicode, now also support other non-standard encoding such as gbk, big5, shift-jis, euc-jp, etc.


Languages

Language:JavaScript 100.0%