katoikia-app/web-ui/web-react/node_modules/caller-path
Maria Sanchez 5abf040b42 fix web ui template 2022-07-05 22:15:11 -06:00
..
index.js fix web ui template 2022-07-05 22:15:11 -06:00
license fix web ui template 2022-07-05 22:15:11 -06:00
package.json fix web ui template 2022-07-05 22:15:11 -06:00
readme.md fix web ui template 2022-07-05 22:15:11 -06:00

readme.md

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