@picktub/lot
v0.0.2
Published
Pick the something item which in the set(Array).
Downloads
1
Readme
@picktub/lot
@picktub/lot pick the something item which in the set(Array).
How to use
import { Lot } from '@picktub/lot';
const lot = new Lot({ set: [1, 2, 3, 4, 5] });
const picked = lot.pick({k:4})
console.log(picked);