UNPKG

@warlock.js/cascade

Version:

ORM for managing databases

17 lines (16 loc) 430 B
import {Pipeline}from'./pipeline.js';class SortRandomPipeline extends Pipeline { size; /** * Constructor */ constructor(size) { super("sample"); this.size = size; this.data({ size, }); } } function sortRandomPipeline(size) { return new SortRandomPipeline(size); }export{SortRandomPipeline,sortRandomPipeline};//# sourceMappingURL=SortRandomPipeline.js.map