mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-12 20:14:12 +00:00
16 lines
272 B
JavaScript
16 lines
272 B
JavaScript
|
export function isInt(n) {
|
||
|
return Number(n) === n && n % 1 === 0;
|
||
|
}
|
||
|
|
||
|
export function isFloat(n) {
|
||
|
return Number(n) === n && n % 1 !== 0;
|
||
|
}
|
||
|
|
||
|
export function isEmpty(n) {
|
||
|
return n === ''
|
||
|
}
|
||
|
|
||
|
export function isFloatOrInt(n) {
|
||
|
return (isFloat(n) || isInt(n))
|
||
|
}
|