XuelesszzZ 94af2b8e7b 6-30-5 | 1 vuosi sitten | |
---|---|---|
.. | ||
index.js | 1 vuosi sitten | |
license | 1 vuosi sitten | |
package.json | 1 vuosi sitten | |
readme.md | 1 vuosi sitten |
Get the path of the caller function
$ npm install --save caller-path
// foo.js
const callerPath = require('caller-path');
module.exports = () => {
console.log(callerPath());
//=> '/Users/sindresorhus/dev/unicorn/bar.js'
}
// bar.js
const foo = require('./foo');
foo();
MIT © Sindre Sorhus