UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

5 lines 166 B
import { filter } from './filter'; export function skip(count) { return filter(function (_, index) { return count <= index; }); } //# sourceMappingURL=skip.js.map