source:
node_modules/d3-quadtree/src/data.js@
e4c61dd
| Last change on this file since e4c61dd was e4c61dd, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 170 bytes | |
| Line | |
|---|---|
| 1 | export default function() { |
| 2 | var data = []; |
| 3 | this.visit(function(node) { |
| 4 | if (!node.length) do data.push(node.data); while (node = node.next) |
| 5 | }); |
| 6 | return data; |
| 7 | } |
Note:
See TracBrowser
for help on using the repository browser.
