Izmjenjena struktura, dodan backand

This commit is contained in:
GotPPay
2017-10-16 11:19:46 +02:00
parent 1ec88afacb
commit 048e32c4aa
37153 changed files with 2975854 additions and 1 deletions

8
web/node_modules/es5-ext/math/clz32/implement.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(Math, "clz32", { value: require("./shim"),
configurable: true,
enumerable: false,
writable: true });
}

5
web/node_modules/es5-ext/math/clz32/index.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
"use strict";
module.exports = require("./is-implemented")()
? Math.clz32
: require("./shim");

View File

@@ -0,0 +1,7 @@
"use strict";
module.exports = function () {
var clz32 = Math.clz32;
if (typeof clz32 !== "function") return false;
return clz32(1000) === 22;
};

7
web/node_modules/es5-ext/math/clz32/shim.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
"use strict";
module.exports = function (value) {
// eslint-disable-next-line no-bitwise
value >>>= 0;
return value ? 32 - value.toString(2).length : 32;
};