UNPKG

@hyperlane-xyz/utils

Version:

General utilities and types for the Hyperlane network

7 lines 213 B
export function isNullish(val) { return val === null || val === undefined; } export function isNumeric(value) { return typeof value === 'number' || /^\d+$/.test(value); } //# sourceMappingURL=typeof.js.map