Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

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库,支持浏览器

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

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

说明:

  • 编码表是经过简单压缩的,只有不到40k(gzip 后20k)

    正常的编码表最少要到200K

  • 本库不包含GBK自定义(扩展)码区
  • 实现了URI相关函数,方便始用
  • 浏览器请使用 dist/ 路径下的文件
  • 浏览器版本加载时会解压编码表,加载时间稍多

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.encodeURI('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 13 Apr 2018

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

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc