There was an error while loading. Please reload this page.
Get values except last.
Similar: head, tail, init, last.
function init(x) // x: an iterable
const xiterable = require('extra-iterable'); [...xiterable.init([1, 2, 3])]; // → [1, 2] [...xiterable.init([1])]; // → []