(input)
| 1623 | } |
| 1624 | |
| 1625 | function isDate(input) { |
| 1626 | return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; |
| 1627 | } |
| 1628 | |
| 1629 | function map(arr, fn) { |
| 1630 | var res = [], i; |
no outgoing calls
no test coverage detected