Home Manual Reference Source

src/slice.js

export function slice(array, left, right) {
	return Array.prototype.slice.call(array, left, right);
}