清理 z, 删除 setFunctionNamesIfNecessary
This commit is contained in:
parent
93674c6f9e
commit
b7421ffc89
38
md5.js
38
md5.js
@ -15,36 +15,18 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
var z = function () {
|
var z = function () {
|
||||||
var s = function () { }
|
// checkEnvironment
|
||||||
s.prototype = {
|
if (typeof navigator !== "undefined" && navigator.userAgent.includes("Chrome/")) {
|
||||||
p: {}
|
return true;
|
||||||
}
|
}
|
||||||
var r = new s()
|
|
||||||
if (!(r.__proto__ && r.__proto__.p === s.prototype.p)) return false
|
if (typeof version === "function" && version.length === 0 && /^\d+\.\d+\.\d+\.\d+$/.test(version())) {
|
||||||
try {
|
return true;
|
||||||
if (typeof navigator != "undefined" && typeof navigator.userAgent == "string" && navigator.userAgent.indexOf("Chrome/") >= 0) return true
|
}
|
||||||
if (typeof version == "function" && version.length == 0) {
|
|
||||||
var q = version()
|
return false;
|
||||||
if (/^\d+\.\d+\.\d+\.\d+$/.test(q)) return true
|
|
||||||
}
|
|
||||||
} catch (p) { }
|
|
||||||
return false
|
|
||||||
}()
|
}()
|
||||||
|
|
||||||
function setFunctionNamesIfNecessary(a) {
|
|
||||||
function t() { };
|
|
||||||
if (typeof t.name == "string") return
|
|
||||||
for (var s = 0; s < a.length; s++) {
|
|
||||||
var r = a[s]
|
|
||||||
var q = Object.keys(r)
|
|
||||||
for (var p = 0; p < q.length; p++) {
|
|
||||||
var o = q[p]
|
|
||||||
var n = r[o]
|
|
||||||
if (typeof n == "function") n.name = o
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function inherit(a, b) {
|
function inherit(a, b) {
|
||||||
a.prototype.constructor = a
|
a.prototype.constructor = a
|
||||||
a.prototype["$i" + a.name] = a
|
a.prototype["$i" + a.name] = a
|
||||||
@ -243,7 +225,6 @@
|
|||||||
lazyOld: lazyOld,
|
lazyOld: lazyOld,
|
||||||
updateHolder: updateHolder,
|
updateHolder: updateHolder,
|
||||||
convertToFastObject: convertToFastObject,
|
convertToFastObject: convertToFastObject,
|
||||||
setFunctionNamesIfNecessary: setFunctionNamesIfNecessary,
|
|
||||||
updateTypes: updateTypes,
|
updateTypes: updateTypes,
|
||||||
setOrUpdateInterceptorsByTag: setOrUpdateInterceptorsByTag,
|
setOrUpdateInterceptorsByTag: setOrUpdateInterceptorsByTag,
|
||||||
setOrUpdateLeafTags: setOrUpdateLeafTags
|
setOrUpdateLeafTags: setOrUpdateLeafTags
|
||||||
@ -8252,7 +8233,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
var w = [A, C, F, H, J, L, M, O, P, Q, S, T, V, W, X, Y, Z]
|
var w = [A, C, F, H, J, L, M, O, P, Q, S, T, V, W, X, Y, Z]
|
||||||
hunkHelpers.setFunctionNamesIfNecessary(w)
|
|
||||||
var $ = {}
|
var $ = {}
|
||||||
H.m8.prototype = {}
|
H.m8.prototype = {}
|
||||||
J.af.prototype = {
|
J.af.prototype = {
|
||||||
|
Loading…
Reference in New Issue
Block a user