This release is versions behind 1.0.6 — the latest version of @std/bytes.
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Works with
•JSR Score100%•This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




Downloads19,458/wk
•Published2 years ago (0.223.0)
Utilities to manipulate Uint8Arrays that are not built-in to JavaScript
Provides helper functions to manipulate Uint8Array byte slices that are not
included on the Uint8Array prototype.
import { concat } from "@std/bytes/concat"; const a = new Uint8Array([0, 1, 2]); const b = new Uint8Array([3, 4, 5]); concat([a, b]); // Uint8Array(6) [ 0, 1, 2, 3, 4, 5 ]
Built and signed on
GitHub Actions
Add Package
deno add jsr:@std/bytes
Import symbol
import * as bytes from "@std/bytes";
Import directly with a jsr specifier
import * as bytes from "jsr:@std/bytes";