(...args)
| 135 | configurable: true, |
| 136 | enumerable: false, |
| 137 | value(...args) { |
| 138 | const res = base.apply(this, args); |
| 139 | |
| 140 | array._chartjs.listeners.forEach((object) => { |
| 141 | if (typeof object[method] === 'function') { |
| 142 | object[method](...args); |
| 143 | } |
| 144 | }); |
| 145 | |
| 146 | return res; |
| 147 | } |
| 148 | }); |
| 149 | }); |
| 150 | } |