mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
d102a10235
* refactor: import from `@std/assert` * update
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
// This module is browser compatible.
|
|
import { copy } from "./copy.ts";
|
|
|
|
/**
|
|
* Returns a new byte slice composed of `count` repetitions of the `source`
|
|
* array.
|
|
*
|
|
* @param source Source array to repeat.
|
|
* @param count Number of times to repeat the source array.
|
|
* @returns A new byte slice composed of `count` repetitions of the `source`
|
|
* array.
|
|
*
|
|
* @example Basic usage
|
|
* ```ts
|
|
* import { repeat } from "@std/bytes/repeat";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* const source = new Uint8Array([0, 1, 2]);
|
|
*
|
|
* assertEquals(repeat(source, 3), new Uint8Array([0, 1, 2, 0, 1, 2, 0, 1, 2]));
|
|
* ```
|
|
*
|
|
* @example Zero count
|
|
* ```ts
|
|
* import { repeat } from "@std/bytes/repeat";
|
|
* import { assertEquals } from "@std/assert";
|
|
*
|
|
* const source = new Uint8Array([0, 1, 2]);
|
|
*
|
|
* assertEquals(repeat(source, 0), new Uint8Array());
|
|
* ```
|
|
*/
|
|
export function repeat(source: Uint8Array, count: number): Uint8Array {
|
|
if (count < 0 || !Number.isInteger(count)) {
|
|
throw new RangeError("Count must be a non-negative integer");
|
|
}
|
|
|
|
const repeated = new Uint8Array(source.length * count);
|
|
let offset = 0;
|
|
|
|
while (offset < repeated.length) {
|
|
offset += copy(source, repeated, offset);
|
|
}
|
|
|
|
return repeated;
|
|
}
|