(input)
| 1619 | } |
| 1620 | |
| 1621 | function isArray(input) { |
| 1622 | return Object.prototype.toString.call(input) === '[object Array]'; |
| 1623 | } |
| 1624 | |
| 1625 | function isDate(input) { |
| 1626 | return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; |
no outgoing calls
no test coverage detected