Socket
Socket
Sign inDemoInstall

gbk.js

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gbk.js

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


Version published
Weekly downloads
433
decreased by-13.57%
Maintainers
1
Weekly downloads
 
Created
Source

一个小而快的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 函数一至

Keywords

FAQs

Package last updated on 26 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc