UNPKG
one-schema
Version:
latest (0.7.0)
0.7.0
0.6.0
0.5.1
0.5.0
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1
0.1.1
0.0.4
one-schema object validator
github.com/tiancai-hq/one-schema
tiancai-hq/one-schema
one-schema
/
src
/
utils
/
types.ts
4 lines
(3 loc)
•
87 B
text/typescript
View Raw
1
2
3
4
export
function
isInt32Number
(
x: any
) {
return
typeof
x ===
'number'
&& x === ~~x; }