We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Get values except first.
Similar: head, tail.
function tail(x) // x: an iterable
const entries = require('extra-entries'); var x = [["a", 1], ["b", 2], ["c", 3]]; [...entries.tail(x)]; // → [ [ "b", 2 ], [ "c", 3 ] ] var x = [["a", 1]]; [...entries.tail(x)]; // → []
There was an error while loading. Please reload this page.