lihai 8d6c751f49 feat: push | лет назад: 2 | |
---|---|---|
.. | ||
node_modules | лет назад: 2 | |
index.js | лет назад: 2 | |
license | лет назад: 2 | |
package.json | лет назад: 2 | |
readme.md | лет назад: 2 |
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