callsites
Get callsites from the V8 stack trace API
Install
npm install callsitesUsage
import callsites from 'callsites';
function unicorn() {
console.log(callsites()[0].getFileName());
//=> '/Users/sindresorhus/dev/callsites/test.js'
}
unicorn();API
Returns an array of callsite objects with the following methods:
getThis: Returns the value ofthis.getTypeName: Returns the type ofthisas a string. This is the name of the function stored in the constructor field ofthis, if available, otherwise the object's[[Class]]internal property.getFunction: Returns the current function.getFunctionName: Returns the name of the current function, typically itsnameproperty. If a name property is not available an attempt will be made to try to infer a name from the function's context.getMethodName: Returns the name of the property ofthisor one of its prototypes that holds the current function.getFileName: If this function was defined in a script returns the name of the script.getLineNumber: If this function was defined in a script returns the current line number.getColumnNumber: If this function was defined in a script returns the current column numbergetEvalOrigin: If this function was created using a call toevalreturns a string representing the location whereevalwas called.isToplevel: Returnstrueif this is a top-level invocation, that is, if it's a global object.isEval: Returnstrueif this call takes place in code defined by a call toeval.isNative: Returnstrueif this call is in native V8 code.isConstructor: Returnstrueif this is a constructor call.isAsync(): Returnstrueif this call is asynchronous (i.e.await,Promise.all(), orPromise.any()).isPromiseAll(): Returnstrueif this is an asynchronous call toPromise.all().getPromiseIndex(): Returns the index of the promise element that was followed inPromise.all()orPromise.any()for async stack traces, ornullif theCallSiteis not an asynchronousPromise.all()orPromise.any()call.