(arr: any[], value_or_array: any)
| 17 | }; |
| 18 | |
| 19 | const push_to_array = function (arr: any[], value_or_array: any) { |
| 20 | Array.prototype.push.apply(arr, isArray(value_or_array) ? value_or_array : [value_or_array]); |
| 21 | }; |
| 22 | |
| 23 | let toISOString; |
| 24 |
no test coverage detected