Skip to main content
function callsites
import { callsites } from "https://deno.land/x/shop@0.0.1/deps.ts";

Returns the list of CallSite objects from the V8 stack trace API.

import callsites from "";
function foo() {
  console.log(callsites()[0].getFileName());
  // => file:///path/to/file.js
}
foo();

Returns

CallSite[]