outaozhen bb52c63d7d 库提交 5 years ago
..
index.js 9778140fc2 测试提交 5 years ago
license 9778140fc2 测试提交 5 years ago
package.json bb52c63d7d 库提交 5 years ago
readme.md 9778140fc2 测试提交 5 years ago

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