(arr, valueOrArray)
| 21 | var isArray = Array.isArray; |
| 22 | var push = Array.prototype.push; |
| 23 | var pushToArray = function (arr, valueOrArray) { |
| 24 | push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]); |
| 25 | }; |
| 26 | |
| 27 | var toISO = Date.prototype.toISOString; |
| 28 |
no outgoing calls
no test coverage detected