'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;