update, text, response

This commit is contained in:
2025-11-02 11:09:14 +01:00
parent 14776c86b0
commit eed8a4ddcf
2794 changed files with 156786 additions and 129204 deletions

22
node_modules/memoizee/profile.js generated vendored
View File

@@ -9,23 +9,25 @@ var partial = require("es5-ext/function/#/partial")
, d = require("d")
, memoize = require("./plain");
var max = Math.max, stats = exports.statistics = {};
var max = Math.max, stats = (exports.statistics = {});
Object.defineProperty(
memoize,
"__profiler__",
memoize, "__profiler__",
d(function (conf) {
var id, source, data, stack;
stack = new Error().stack;
if (
!stack ||
!stack.split("\n").slice(3).some(function (line) {
if (line.indexOf("/memoizee/") === -1 && line.indexOf(" (native)") === -1) {
source = line.replace(/\n/g, "\\n").trim();
return true;
}
return false;
})
!stack
.split("\n")
.slice(3)
.some(function (line) {
if (line.indexOf("/memoizee/") === -1 && line.indexOf(" (native)") === -1) {
source = line.replace(/\n/g, "\\n").trim();
return true;
}
return false;
})
) {
source = "unknown";
}