| 
				
					 | 
			преди 1 година | |
|---|---|---|
| .. | ||
| index.js | преди 1 година | |
| license | преди 1 година | |
| package.json | преди 1 година | |
| readme.md | преди 1 година | |
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