Merge branch 'modules-proxy-patches' into immediate-finds-modules-proxy
This commit is contained in:
commit
f21bfb9d78
|
@ -46,7 +46,7 @@ export const filters = {
|
||||||
if (typeof m !== "function") return false;
|
if (typeof m !== "function") return false;
|
||||||
const s = Function.prototype.toString.call(m);
|
const s = Function.prototype.toString.call(m);
|
||||||
for (const c of code) {
|
for (const c of code) {
|
||||||
if (!s.includes(c)) return false;
|
if (s.indexOf(c) === -1) return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
@ -476,7 +476,7 @@ export const findModuleId = traceFunction("findModuleId", function findModuleId(
|
||||||
const str = String(wreq.m[id]);
|
const str = String(wreq.m[id]);
|
||||||
|
|
||||||
for (const c of code) {
|
for (const c of code) {
|
||||||
if (!str.includes(c)) continue outer;
|
if (str.indexOf(c) === -1) continue outer;
|
||||||
}
|
}
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
@ -729,7 +729,7 @@ export function search(...filters: Array<string | RegExp>) {
|
||||||
const factory = factories[id];
|
const factory = factories[id];
|
||||||
const factoryStr = String(factory);
|
const factoryStr = String(factory);
|
||||||
for (const filter of filters) {
|
for (const filter of filters) {
|
||||||
if (typeof filter === "string" && !factoryStr.includes(filter)) continue outer;
|
if (typeof filter === "string" && factoryStr.indexOf(filter) === -1) continue outer;
|
||||||
if (filter instanceof RegExp && !filter.test(factoryStr)) continue outer;
|
if (filter instanceof RegExp && !filter.test(factoryStr)) continue outer;
|
||||||
}
|
}
|
||||||
results[id] = factory;
|
results[id] = factory;
|
||||||
|
|
Loading…
Reference in a new issue