Zhouyiping 5a7c95461a first commit 3 dní pred
..
node_modules 5a7c95461a first commit 3 dní pred
index.js 5a7c95461a first commit 3 dní pred
license 5a7c95461a first commit 3 dní pred
package.json 5a7c95461a first commit 3 dní pred
readme.md 5a7c95461a first commit 3 dní pred

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