peach a19a732be8 commit message | 2 年之前 | |
---|---|---|
.. | ||
index.js | 2 年之前 | |
license | 2 年之前 | |
package.json | 2 年之前 | |
readme.md | 2 年之前 |
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