3
common/resources/client/utils/number/is-number.ts
Executable file
3
common/resources/client/utils/number/is-number.ts
Executable file
@@ -0,0 +1,3 @@
|
||||
export function isNumber(value: any): value is number {
|
||||
return typeof value === 'number' && !Number.isNaN(value);
|
||||
}
|
||||
Reference in New Issue
Block a user