Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 | 1x 200x 200x 200x | export const copy = <T extends Uint8Array>(arr: T): T => {
const dupe = new Uint8Array(arr.length) as T;
dupe.set(arr);
return dupe;
};
|