Sha256: 583aba43e0ae0ccfb6c3a790019486990ac9241337dc38005f0189586e18295a

Contents?: true

Size: 1.08 KB

Versions: 80

Compression:

Stored size: 1.08 KB

Contents

"use strict";
// Call this function in a another function to find out the file from
// which that function was called from. (Inspects the v8 stack trace)
//
// Inspired by http://stackoverflow.com/questions/13227489
module.exports = function getCallerFile(position) {
    if (position === void 0) { position = 2; }
    if (position >= Error.stackTraceLimit) {
        throw new TypeError('getCallerFile(position) requires position be less then Error.stackTraceLimit but position was: `' + position + '` and Error.stackTraceLimit was: `' + Error.stackTraceLimit + '`');
    }
    var oldPrepareStackTrace = Error.prepareStackTrace;
    Error.prepareStackTrace = function (_, stack) { return stack; };
    var stack = new Error().stack;
    Error.prepareStackTrace = oldPrepareStackTrace;
    if (stack !== null && typeof stack === 'object') {
        // stack[0] holds this file
        // stack[1] holds where this function was called
        // stack[2] holds the file we're interested in
        return stack[position] ? stack[position].getFileName() : undefined;
    }
};
//# sourceMappingURL=index.js.map

Version data entries

80 entries across 79 versions & 14 rubygems

Version Path
appmap-0.70.1 ./node_modules/get-caller-file/index.js
appmap-0.70.0 ./node_modules/get-caller-file/index.js
appmap-0.69.0 ./node_modules/get-caller-file/index.js
appmap-0.68.2 ./node_modules/get-caller-file/index.js
appmap-0.68.1 ./node_modules/get-caller-file/index.js
disco_app-0.15.2 test/dummy/node_modules/get-caller-file/index.js
appmap-0.68.0 ./node_modules/get-caller-file/index.js
appmap-0.67.1 ./node_modules/get-caller-file/index.js
appmap-0.67.0 ./node_modules/get-caller-file/index.js
disco_app-0.18.4 test/dummy/node_modules/get-caller-file/index.js
disco_app-0.18.1 test/dummy/node_modules/get-caller-file/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/get-caller-file/index.js
disco_app-0.14.0 test/dummy/node_modules/get-caller-file/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/get-caller-file/index.js
appmap-0.66.2 ./node_modules/get-caller-file/index.js
appmap-0.66.1 ./node_modules/get-caller-file/index.js
appmap-0.66.0 ./node_modules/get-caller-file/index.js
appmap-0.65.1 ./node_modules/get-caller-file/index.js
appmap-0.65.0 ./node_modules/get-caller-file/index.js
appmap-0.64.0 ./node_modules/get-caller-file/index.js