DigitalConsumer.FixMyGlass/node_modules/caller-path
2021-09-20 18:29:11 -04:00
..
index.js my commit 2021-09-20 18:29:11 -04:00
license my commit 2021-09-20 18:29:11 -04:00
package.json my commit 2021-09-20 18:29:11 -04:00
readme.md my commit 2021-09-20 18:29:11 -04:00

caller-path Build Status

Get the path of the caller function

Install

$ npm install --save caller-path

Usage

// foo.js
const callerPath = require('caller-path');

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

License

MIT © Sindre Sorhus