mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
11 lines
269 B
JavaScript
11 lines
269 B
JavaScript
|
// isNumber function from lodash
|
||
|
|
||
|
var toString = Object.prototype.toString;
|
||
|
|
||
|
function isNumber(value) {
|
||
|
return typeof value === 'number' ||
|
||
|
value && typeof value === 'object' && toString.call(value) === '[object Number]' || false;
|
||
|
}
|
||
|
|
||
|
export default isNumber;
|