cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

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}