Codebase list node-d3-shape / 9a40bcf src / array.js
9a40bcf

Tree @9a40bcf (Download .tar.gz)

array.js @9a40bcfraw · history · blame

1
2
3
4
5
6
7
export var slice = Array.prototype.slice;

export default function(x) {
  return typeof x === "object" && "length" in x
    ? x // Array, TypedArray, NodeList, array-like
    : Array.from(x); // Map, Set, iterable, string, or anything else
}