Skip to main content
Home
This release is 34 versions behind 1.0.6 — the latest version of @std/bytes. Jump to latest

Utilities to manipulate Uint8Arrays that are not built-in to JavaScript

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
2 years ago (0.202.0)
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. /** * Provides helper functions to manipulate `Uint8Array` byte slices that are not * included on the `Uint8Array` prototype. * * @module */ export * from "./bytes_list.ts"; export * from "./concat.ts"; export * from "./copy.ts"; export * from "./ends_with.ts"; export * from "./equals.ts"; export * from "./includes_needle.ts"; export * from "./index_of_needle.ts"; export * from "./last_index_of_needle.ts"; export * from "./repeat.ts"; export * from "./starts_with.ts";