Zhouyiping 5a7c95461a first commit il y a 3 jours
..
node_modules 5a7c95461a first commit il y a 3 jours
index.js 5a7c95461a first commit il y a 3 jours
license 5a7c95461a first commit il y a 3 jours
package.json 5a7c95461a first commit il y a 3 jours
readme.md 5a7c95461a first commit il y a 3 jours

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