(input)
| 14755 | } |
| 14756 | |
| 14757 | function isNumber(input) { |
| 14758 | return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]'; |
| 14759 | } |
| 14760 | |
| 14761 | function isDate(input) { |
| 14762 | return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; |
no outgoing calls
no test coverage detected