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