is-number.js (169B)
1export default function isNumber(input) { 2 return ( 3 typeof input === 'number' || 4 Object.prototype.toString.call(input) === '[object Number]' 5 ); 6}
cscg24-guacamoleCSCG 2024 Challenge 'Guacamole Mashup' | |
git clone https://git.sinitax.com/sinitax/cscg24-guacamole | |
Log | Files | Refs | sfeed.txt |