@i-xi-dev/bytes

4.4.2 • Public • Published

@i-xi-dev/bytes

A JavaScript byte array library for the browser, Deno and Node.js

Requirement

ByteSequence.fromBlob, ByteSequence.prototype.toBlob and ByteSequence.prototype.toStream methods

These require Blob.

Chrome Edge Firefox Safari Deno Node.js

15.7+

ByteSequence.prototype.toFile method

This requires File.

Chrome Edge Firefox Safari Deno Node.js

19.2+

ByteSequence.fromStream method

This requires ReadableStream.

Chrome Edge Firefox Safari Deno Node.js

16.5+

ByteSequence.fromRequestOrResponse, ByteSequence.prototype.toRequest and ByteSequence.prototype.toResponse methods

These require Request and Response.

Chrome Edge Firefox Safari Deno Node.js

18.0+

ByteSequence.generateRandom, ByteSequence.prototype.toSha256Digest, ByteSequence.prototype.toSha384Digest and ByteSequence.prototype.toSha512Digest and ByteSequence.prototype.toSha1Digest methods, ByteSequence.prototype.sha256Integrity, ByteSequence.prototype.sha384Integrity and ByteSequence.prototype.sha512Integrity properties

These require Crypto.

Chrome Edge Firefox Safari Deno Node.js

15.0+

Other than above

Chrome Edge Firefox Safari Deno Node.js

Installation

npm

$ npm i @i-xi-dev/bytes@4.4.2
import { ByteSequence, ByteOrder } from "@i-xi-dev/bytes";

CDN

Example for UNPKG

import { ByteSequence, ByteOrder } from "https://www.unpkg.com/@i-xi-dev/bytes@4.4.2/esm/mod.js";

Usage

Conversion


Creating an instance

Creates an instance with a new underlying buffer

Creates an instance with the specified underlying buffer


Converting the instance to an ArrayBuffer


Converting the instance to an ArrayBufferView


Converting the instance to a number array


Converting the instance to a binary string


Converting the instance to a string containing Base64 encoded bytes


Converting the instance to a string containing percent encoded bytes


Converting the instance to a string based on the specified format


Converting the instance to a text


Converting the instance to a Blob


Converting the instance to a File

Node.js not support the File object


Converting the instance to a data URL


Converting the instance to a ReadableStream


Converting the instance to a Request


Converting the instance to a Response


Generating a digest of the instance


Generating a subresource integrity value of the instance


Editing the byte sequence

Gets the underlying ArrayBuffer

Gets the ArrayBufferView that views the underlying ArrayBuffer


Duplicating the byte sequence

Duplicates with the new underlying ArrayBuffer

Duplicates the subsequence with the new underlying ArrayBuffer


Comparing the byte sequence

Examples

Package Sidebar

Install

npm i @i-xi-dev/bytes

Weekly Downloads

70

Version

4.4.2

License

MIT

Unpacked Size

454 kB

Total Files

182

Last publish

Collaborators

  • i-xi-dev