(input)
| 61 | } |
| 62 | |
| 63 | function isNumber(input) { |
| 64 | return ( |
| 65 | typeof input === 'number' || |
| 66 | Object.prototype.toString.call(input) === '[object Number]' |
| 67 | ); |
| 68 | } |
| 69 | |
| 70 | function isDate(input) { |
| 71 | return ( |
no outgoing calls
no test coverage detected