File size: 145 Bytes
f9f1a35 |
1 2 3 4 |
export default function isNumber(input) {
return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
}
|
f9f1a35 |
1 2 3 4 |
export default function isNumber(input) {
return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';
}
|