katoikia-app/web-ui/web-react/node_modules/es5-ext/math/clz32/shim.js

8 lines
161 B
JavaScript
Raw Normal View History

2022-07-06 04:15:11 +00:00
"use strict";
module.exports = function (value) {
// eslint-disable-next-line no-bitwise
value >>>= 0;
return value ? 32 - value.toString(2).length : 32;
};