package.src.order.none.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of d3-shape Show documentation
Show all versions of d3-shape Show documentation
Graphical primitives for visualization, such as lines and areas.
export default function(series) {
var n = series.length, o = new Array(n);
while (--n >= 0) o[n] = n;
return o;
}