11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function drop(arr, itemsCount) {
|
|
itemsCount = Math.max(itemsCount, 0);
|
|
return arr.slice(itemsCount);
|
|
}
|
|
|
|
exports.drop = drop;
|