AK-21/Graphite-Industrial-Intelligence
0
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 