24 lines
690 B
JavaScript
24 lines
690 B
JavaScript
//#region src/compat/predicate/isNumber.ts
|
|
/**
|
|
* Checks if a given value is a number.
|
|
*
|
|
* This function can also serve as a type predicate in TypeScript, narrowing the type of the argument to `number`.
|
|
*
|
|
* @param {any} value The value to check if it is a number.
|
|
* @returns {value is number} Returns `true` if `value` is a number, else `false`.
|
|
*
|
|
* @example
|
|
* const value1 = 123;
|
|
* const value2 = 'abc';
|
|
* const value3 = true;
|
|
*
|
|
* console.log(isNumber(value1)); // true
|
|
* console.log(isNumber(value2)); // false
|
|
* console.log(isNumber(value3)); // false
|
|
*/
|
|
function isNumber(value) {
|
|
return typeof value === "number" || value instanceof Number;
|
|
}
|
|
//#endregion
|
|
exports.isNumber = isNumber;
|