persona-community-5/.pnpm-store/v3/files/39/56b076780d0e0aa8de236053429739ac4ce60b3785fbd5703db0b3f7c0e95ce7895d17712b2558073c01676594ea0085705a962c5d162aa961ab174c30c9a3
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

9 lines
354 B
Plaintext

module.exports = function () {
// see https://code.google.com/p/v8/wiki/JavaScriptStackTraceApi
var origPrepareStackTrace = Error.prepareStackTrace;
Error.prepareStackTrace = function (_, stack) { return stack; };
var stack = (new Error()).stack;
Error.prepareStackTrace = origPrepareStackTrace;
return stack[2].getFileName();
};