1.0.9 • Published 8 months ago

hexstr v1.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

hexstr

A JavaScript library for convert hexadecimal string.

一个用于转换十六进制字符串的 JavaScript 库。

Install / 安装

npm i hexstr

Usage / 用法

import { hexToArray, toHex, hexToSignedNumber, hexToNumber } from "hexstr";

hexToArray("1234"); // [18,52]

toHex(0x12); // "12"
toHex(0x12f); // "012F"
toHex([0x12, 0x34, 0xFF]); // "1234FF"

hexToSignedNumber("12"); // 18
hexToSignedNumber("FF"); // -1

hexToNumber("12"); // 18
hexToNumber("FF"); // 255

Test Tool / 测试工具

vitest

Test Coverage / 测试覆盖率

File% Stmts% Branch% Funcs% LinesUncovered Line #s
All files100100100100
index.js100100100100
1.0.9

8 months ago

1.0.8

8 months ago

1.0.7

8 months ago

1.0.6

11 months ago

1.0.5

11 months ago

1.0.4

11 months ago

1.0.3

11 months ago

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago