Irina Glushko 2389e7160b HW1 done il y a 3 ans
..
node_modules 2389e7160b HW1 done il y a 3 ans
index.js 2389e7160b HW1 done il y a 3 ans
license 2389e7160b HW1 done il y a 3 ans
package.json 2389e7160b HW1 done il y a 3 ans
readme.md 2389e7160b HW1 done il y a 3 ans

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