yrik 0fb20a58e3 提交 пре 4 година
..
index.js eec7f449c9 first commit пре 4 година
license eec7f449c9 first commit пре 4 година
package.json 0fb20a58e3 提交 пре 4 година
readme.md eec7f449c9 first commit пре 4 година

readme.md

caller-path Build Status

Get the path of the caller function

Install

$ npm install --save caller-path

Usage

// 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();

License

MIT © Sindre Sorhus