mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-29 10:00:49 +08:00
9 lines
295 B
JavaScript
9 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
|
|
}
|