7 lines
103 B
JavaScript
7 lines
103 B
JavaScript
|
|
const $skip = (collection, expr, _options) => {
|
||
|
|
return collection.drop(expr);
|
||
|
|
};
|
||
|
|
export {
|
||
|
|
$skip
|
||
|
|
};
|