LAPTOP-UBJMM5MG\user d7428fd373 更新 1 år sedan
..
index.js d7428fd373 更新 1 år sedan
license d7428fd373 更新 1 år sedan
package.json d7428fd373 更新 1 år sedan
readme.md d7428fd373 更新 1 år sedan

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