caoge c760052ff9 机车状态修改 | vor 8 Monaten | |
---|---|---|
.. | ||
index.js | vor 8 Monaten | |
license | vor 8 Monaten | |
package.json | vor 8 Monaten | |
readme.md | vor 8 Monaten |
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