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