MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / isNumber

Function isNumber

tests/test_code/js/moment/moment.js:63–68  ·  view source on GitHub ↗
(input)

Source from the content-addressed store, hash-verified

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 (

Callers 8

addParseTokenFunction · 0.85
setMonthFunction · 0.85
configFromInputFunction · 0.85
createDurationFunction · 0.85
isMomentInputFunction · 0.85
isNumberOrStringArrayFunction · 0.85
listMonthsImplFunction · 0.85
listWeekdaysImplFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected