mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 12:05:32 +00:00
10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
/**
|
|
* Check whether it's a number or a number-like string:
|
|
* i.e. when coerced to a number it == itself.
|
|
*
|
|
* @param {string | number} value
|
|
*/
|
|
export default function isNumbery(value) {
|
|
return value.toString().trim().length !== 0 && Number(value) == value; // eslint-disable-line eqeqeq
|
|
}
|