UNPKG

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