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
clapton-0.0.26 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.25 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.24 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.23 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.22 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.21 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.20 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.19 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.18 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.17 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.16 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.15 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.14 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.13 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.12 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.11 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.10 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.9 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.8 lib/clapton/javascripts/node_modules/get-caller-file/index.js
clapton-0.0.7 lib/clapton/javascripts/node_modules/get-caller-file/index.js