XuelesszzZ 94af2b8e7b 6-30-5 | hai 1 ano | |
---|---|---|
.. | ||
node_modules | hai 1 ano | |
index.js | hai 1 ano | |
license | hai 1 ano | |
package.json | hai 1 ano | |
readme.md | hai 1 ano |
Get the callsite of the caller function
$ npm install --save caller-callsite
// foo.js
const callerCallsite = require('caller-callsite');
module.exports = () => {
console.log(callerCallsite().getFileName());
//=> '/Users/sindresorhus/dev/unicorn/bar.js'
}
// bar.js
const foo = require('./foo');
foo();
Returns a callsite
object.
MIT © Sindre Sorhus