Danny McCormick c3f0a8be66 Use husky
2019-06-05 11:34:47 -04:00
..
2019-06-05 11:34:47 -04:00
2019-06-05 11:34:47 -04:00
2019-06-05 11:34:47 -04:00
2019-06-05 11:34:47 -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