(key)
| 65 | |
| 66 | const instances = {}; |
| 67 | const getChart = (key) => { |
| 68 | const canvas = getCanvas(key); |
| 69 | return Object.values(instances).filter((c) => c.canvas === canvas).pop(); |
| 70 | }; |
| 71 | |
| 72 | function moveNumericKeys(obj, start, move) { |
| 73 | const keys = Object.keys(obj); |
no test coverage detected