FLUJOS/VISUALIZACION/node_modules/d3-binarytree/src/extent.js
2025-11-07 00:06:12 +01:00

5 lines
166 B
JavaScript
Executable file

export default function(_) {
return arguments.length
? this.cover(+_[0][0]).cover(+_[1][0])
: isNaN(this._x0) ? undefined : [[this._x0], [this._x1]];
}