UNPKG

85 BJavaScriptView Raw
1const isInt32 = (x) => typeof x === "number" && (x | 0) === x;
2export {
3 isInt32
4};