We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Gets entries without the first entry. 🏃 📼 📦 🌔 📒
Similar: head, tail.
entries.tail(x); // x: entries
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)]; // []