UNPKG

203 BJavaScriptView Raw
1// https://github.com/nodejs/node/blob/1aab13cad9c800f4121c1d35b554b78c1b17bdbd/lib/internal/validators.js
2function isUint32 (value) {
3 return value === (value >>> 0)
4}
5
6module.exports = {
7 isUint32
8}