({data, width, height})
| 194 | }); |
| 195 | |
| 196 | function copy2({data, width, height}) { |
| 197 | return {data: data.slice(), width, height}; |
| 198 | } |
| 199 | |
| 200 | function round(x) { |
| 201 | return Math.round(x * 1000) / 1000 || 0; |
no outgoing calls
no test coverage detected
searching dependent graphs…