GBK.js

一个小而快的GBK库,支持浏览器

Цей скрипт не слід встановлювати безпосередньо. Це - бібліотека для інших скриптів для включення в мета директиву // @require https://update.greasyfork.org/scripts/421868/901431/GBKjs.js

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(У мене вже є менеджер скриптів, дайте мені встановити його!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Автор
backrock12
Версія
0.0.1.20210217024426
Створено
17.02.2021
Оновлено
17.02.2021
Size
32,3 кБ
Ліцензія
Н/Д

一个小而快的GBK库,支持浏览器

说明:

  • 编码表是经过简单压缩的,最后打包出的min版只有不到30k(gzip 后20k) > 正常的编码表可能要到200K以上
  • 本库不包含GBK自定义(扩展)码区
  • 实现了URI相关函数,方便使用
  • 浏览器请使用 dist/ 路径下的文件
  • 浏览器版本加载时会解压编码表,建议异步加载

demo

API

GBK.encode({string}) 解码GBK为一个字节数组

GBK.encode('时顺地?abc地')
> [ 202, 177, 203, 179, 181, 216, 63, 97, 98, 99, 181, 216 ]

GBK.decode({BbyteArry}) 解码GBK编码的字节数组 返回字符串

GBK.decode([ 202, 177, 203, 179, 181, 216, 63, 97, 98, 99, 181, 216 ])
> 时顺地?abc地;

URI相关函数

GBK.URI.encodeURI({String}) 转换规则和 encodeURI 函数一至

GBK.URI.encodeURI('https://abc.com/?kk=abv&bb=火车头#top')
> https://abc.com/?kk=abv&bb=%BB%F0%B3%B5%CD%B7#top

GBK.URI.decodeURI({String}) 转换规则和 decodeURI 函数一至

GBK.URI.encodeURIComponent({String}) 转换规则和 encodeURIComponent 函数一至

GBK.URI.encodeURIComponent('https://abc.com/?kk=abv&bb=火车头#top')
> https%3A%2F%2Fabc.com%2F%3Fkk%3Dabv%26bb%3D%BB%F0%B3%B5%CD%B7%23top

GBK.URI.decodeURIComponent({String}) 转换规则和 decodeURIComponent 函数一至