katwhite 2bb8a30479 i hope this works há 4 anos atrás
..
index.js 2bb8a30479 i hope this works há 4 anos atrás
license 2bb8a30479 i hope this works há 4 anos atrás
package.json 2bb8a30479 i hope this works há 4 anos atrás
readme.md 2bb8a30479 i hope this works há 4 anos atrás

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