gaojunlong 0b996e41aa 2025-03-04-1 преди 2 месеца
..
index.js 0b996e41aa 2025-03-04-1 преди 2 месеца
license 0b996e41aa 2025-03-04-1 преди 2 месеца
package.json 0b996e41aa 2025-03-04-1 преди 2 месеца
readme.md 0b996e41aa 2025-03-04-1 преди 2 месеца

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