UNPKG
cosmic-interchain-utils
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.1
0.1.0
Cosmic Interchain Utils
github.com/mellis1010/interchain_main_repo
mellis1010/interchain_main_repo
cosmic-interchain-utils
/
dist
/
typeof.js
7 lines
•
213 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
isNullish
(
val
) {
return
val ===
null
|| val ===
undefined
; }
export
function
isNumeric
(
value
) {
return
typeof
value ===
'number'
||
/^\d+$/
.
test
(value); }
//# sourceMappingURL=typeof.js.map