function-location
v1.0.0
Published
Retrieve `[[FunctionLocation]]` from V8.
Maintainers
Readme
Description
You can retrieve the path of a class or function using this library, and it supports not only node command but also
ts-node.
Installation
npm install function-locationUsage
import { locateV8 } from 'function-location';
class TestClass {
}
function TestFunction() {
}
locateV8(TestClass);
locateV8(TestFunction);Return Value
The locateV8() function returns the source file path of the currently executing function as a string.
License
This library is licensed under the MIT license.
