astra / web /node_modules /moment /src /lib /utils /is-number.js
Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
145 Bytes
export default function isNumber(input) {
return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
}