mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
7 lines
161 B
JavaScript
Vendored
7 lines
161 B
JavaScript
Vendored
"use strict";
|
|
|
|
module.exports = function (value) {
|
|
// eslint-disable-next-line no-bitwise
|
|
value >>>= 0;
|
|
return value ? 32 - value.toString(2).length : 32;
|
|
};
|