2.2.10 • Published 4 years ago
@extra-lists/drop.min v2.2.10
Removes first n entries. :package: :smiley_cat: :running: :vhs: :moon: :scroll: :newspaper: :blue_book:
This is part of package extra-lists.
This is browserified, minified version of @extra-lists/drop. It is exported as global variable lists_drop. CDN: unpkg, jsDelivr.
lists.drop(x, [n]);
// x: lists
// n: number of entries (1)
const lists = require('extra-lists');
var x = [['a', 'b', 'c', 'd', 'e'], [1, 2, 3, 4, 5]];
lists.drop(x, 2).map(c => [...c]);
// [ [ 'c', 'd', 'e' ], [ 3, 4, 5 ] ]
lists.drop(x, 3).map(c => [...c]);
// [ [ 'd', 'e' ], [ 4, 5 ] ]
References
2.2.10
4 years ago
2.2.9
4 years ago
2.2.8
4 years ago
2.2.7
4 years ago
2.2.5
4 years ago
2.2.4
4 years ago
2.2.3
4 years ago
2.2.2
4 years ago
2.2.0
4 years ago
2.1.3
4 years ago
2.1.6
4 years ago
2.1.5
4 years ago
2.1.8
4 years ago
2.1.7
4 years ago
2.1.2
4 years ago
2.1.1
4 years ago
2.1.0
4 years ago
2.0.91
4 years ago
2.0.90
4 years ago
2.0.89
4 years ago
2.0.88
4 years ago