CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
caller.js13 linesDownload Raw Back to lib
1'use strict';2 3var $Error = require('es-errors');4 5module.exports = function () {6    // see https://code.google.com/p/v8/wiki/JavaScriptStackTraceApi7    var origPrepareStackTrace = $Error.prepareStackTrace;8    $Error.prepareStackTrace = function (_, stack) { return stack; };9    var stack = (new $Error()).stack;10    $Error.prepareStackTrace = origPrepareStackTrace;11    return stack[2].getFileName();12};13