katwhite 2bb8a30479 i hope this works 4 éve
..
index.js 2bb8a30479 i hope this works 4 éve
license 2bb8a30479 i hope this works 4 éve
package.json 2bb8a30479 i hope this works 4 éve
readme.md 2bb8a30479 i hope this works 4 éve

readme.md

caller-callsite Build Status

Get the callsite of the caller function

Install

$ npm install --save caller-callsite

Usage

// foo.js
const callerCallsite = require('caller-callsite');

module.exports = () => {
	console.log(callerCallsite().getFileName());
	//=> '/Users/sindresorhus/dev/unicorn/bar.js'
}
// bar.js
const foo = require('./foo');
foo();

API

callerCallsite()

Returns a callsite object.

License

MIT © Sindre Sorhus