XuelesszzZ 94af2b8e7b 6-30-5 | há 1 ano atrás | |
---|---|---|
.. | ||
node_modules | há 1 ano atrás | |
index.js | há 1 ano atrás | |
license | há 1 ano atrás | |
package.json | há 1 ano atrás | |
readme.md | há 1 ano atrás |
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