Retrieve the path of a class or function using this library, and it supports not only node command but also
ts-node.
npm install function-locationimport { locateV8 } from 'function-location';
class TestClass {
}
function testFunction() {
}
locateV8(TestClass);
locateV8(testFunction);The locateV8() function returns the source file path of the currently executing function as a string.
This library is licensed under the MIT license.