Check if a value is a number.
import { isNumber } from '@aws-lambda-powertools/commons/typeUtils';const value = 42;if (isNumber(value)) { // value is a number} Copy
import { isNumber } from '@aws-lambda-powertools/commons/typeUtils';const value = 42;if (isNumber(value)) { // value is a number}
The value to check
Check if a value is a number.
Example