* @param {*} value * @returns {boolean}
(value)
| 53 | * @returns {boolean} |
| 54 | */ |
| 55 | function isUint32(value) { |
| 56 | return value === (value >>> 0); |
| 57 | } |
| 58 | |
| 59 | const octalReg = /^[0-7]+$/; |
| 60 | const modeDesc = 'must be a 32-bit unsigned integer or an octal string'; |
no outgoing calls
no test coverage detected
searching dependent graphs…