mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
21 lines
542 B
TypeScript
21 lines
542 B
TypeScript
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
||
|
// This module is browser compatible.
|
||
|
|
||
|
type Sliceable = {
|
||
|
slice(start?: number, end?: number): Sliceable;
|
||
|
length: number;
|
||
|
};
|
||
|
|
||
|
export class RandomSliceStream<T extends Sliceable>
|
||
|
extends TransformStream<T, T> {
|
||
|
constructor() {
|
||
|
super({
|
||
|
transform(chunk, controller) {
|
||
|
const i = Math.floor(Math.random() * chunk.length);
|
||
|
controller.enqueue(chunk.slice(0, i) as T);
|
||
|
controller.enqueue(chunk.slice(i) as T);
|
||
|
},
|
||
|
});
|
||
|
}
|
||
|
}
|