// 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.js"; export * from "./concat.js"; export * from "./copy.js"; export * from "./ends_with.js"; export * from "./equals.js"; export * from "./includes_needle.js"; export * from "./index_of_needle.js"; export * from "./last_index_of_needle.js"; export * from "./repeat.js"; export * from "./starts_with.js";