katwhite 2bb8a30479 i hope this works hace 4 años
..
index.js 2bb8a30479 i hope this works hace 4 años
license 2bb8a30479 i hope this works hace 4 años
package.json 2bb8a30479 i hope this works hace 4 años
readme.md 2bb8a30479 i hope this works hace 4 años

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