chenrui  c2abfadd11 add 3 年之前
..
index.js c2abfadd11 add 3 年之前
license c2abfadd11 add 3 年之前
package.json c2abfadd11 add 3 年之前
readme.md c2abfadd11 add 3 年之前

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