@litert/[email protected]
该文章根据 CC-BY-4.0 协议发表,转载请遵循该协议。
本文地址:https://fenying.net/project/litert/encodings/v2.3.0/
@litert/encodings
是一个 TypeScript 开发的编码库,提供了多种编码算法支持。
目前支持的编码算法如下:
Name | Description | Binary-Safe |
---|---|---|
base64 |
The standard BASE64 encoding. | Yes |
base64url |
The URL-safe BASE64 encoding. | Yes |
base62x |
The BASE62x encoding. | Yes |
base32 |
The standard BASE32 encoding. | Yes |
hex |
The hexadecimal encoding. | Yes |
urlencode |
The purely URL-safe encoding. | Yes |
strict_uri |
The extended URL-safe encoding. | No |
安装
1npm install @litert/encodings@^2.3.0
v2.3.0 变更
- fix(encoding): 修复
urlencode
解码错误 - build(test): 增加单元测试用例
- build(project): 升级最低 Node.js 版本至
v14