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-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