Skip to content
Subhajit Sahu edited this page Feb 3, 2021 · 18 revisions

Gets values except last. 🏃 📼 📦 🌔 📒

Similar: head, tail, init, last.


iterable.init(x);
// x: an iterable
const iterable = require("extra-iterable");

[...iterable.init([1, 2, 3])];
// [1, 2]

[...iterable.init([1])];
// []


References

Clone this wiki locally