1.2.9 • Published 6 months ago

@hazae41/bytes v1.2.9

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

Bytes

Utilities to deal with sized Uint8Array

npm i @hazae41/bytes

Node Package 📦

Features

  • 100% TypeScript and ESM
  • Rust-like patterns
  • Strongly typed Uint8Array and ArrayLike size
  • Zero-cost abstraction over Uint8Array and ArrayLike
  • Zero-copy conversion from ArrayBufferView
  • Use native Buffer for faster execution on Node
  • Unit-tested

Usage

Sized bytes

const bytes8 = Bytes.alloc(8) // Bytes<8>

Unsafe-allocated sized bytes

const bytes8 = Bytes.allocUnsafe(8) // Bytes<8>

Random sized bytes

const bytes8 = Bytes.random(8) // Bytes<8>

Unknown-sized bytes

const bytesX = new Uint8Array(8) // Bytes<number>

Runtime type-guarding

if (Bytes.is(bytesX, 8))
  bytesX // Bytes<8>
else
  bytesX // Bytes<number>

Type-guarded runtime equality check

if (Bytes.equals(bytesX, bytes8))
  bytesX // Bytes<8>
else
  bytesX // Bytes<number>

Runtime casting with Result pattern

const bytes16 = Bytes.tryCast(bytesX, 16).unwrap() // Bytes<16>

Conversion from sized arrays

const sized4 = Sized.cast([1, 2, 3, 4], 4).unwrap() // Sized<4>
const bytes4 = Bytes.from(sized4) // Bytes<4>

Utf8, Hex, Base64, Ascii encoding

Bytes.fromUtf8(Bytes.toUtf8(bytesX))
Bytes.fromHex(Bytes.toHex(bytesX))
Bytes.fromBase64(Bytes.toBase64(bytesX))
Bytes.fromAscii(Bytes.toAscii(bytesX))

BigInt conversion

Bytes.fromBigInt(Bytes.toBigInt(bytesX))

Sized slicing and padding

const bytes8 = Bytes.sliceOrPadStart(bytesX, 8) // Bytes<8>
1.2.0

8 months ago

1.2.8

6 months ago

1.2.7

6 months ago

1.2.6

6 months ago

1.2.5

6 months ago

1.2.3

7 months ago

1.2.2

8 months ago

1.2.1

8 months ago

1.2.9

6 months ago

1.1.22

8 months ago

1.1.1

1 year ago

1.1.0

1 year ago

1.1.9

12 months ago

1.1.8

12 months ago

1.1.7

12 months ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.12

12 months ago

1.1.11

12 months ago

1.1.10

12 months ago

1.1.16

11 months ago

1.1.15

11 months ago

1.1.14

12 months ago

1.1.13

12 months ago

1.1.19

11 months ago

1.1.18

11 months ago

1.1.17

11 months ago

1.1.21

11 months ago

1.1.20

11 months ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago