gaojunlong 0b996e41aa 2025-03-04-1 2 tháng trước cách đây
..
index.js 0b996e41aa 2025-03-04-1 2 tháng trước cách đây
license 0b996e41aa 2025-03-04-1 2 tháng trước cách đây
package.json 0b996e41aa 2025-03-04-1 2 tháng trước cách đây
readme.md 0b996e41aa 2025-03-04-1 2 tháng trước cách đây

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