summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/caller-path/index.js
blob: b09866d479aa3928532fa45dd463724a6bfeb75d (plain)
1
2
3
4
5
6
'use strict';
var callsites = require('callsites');

module.exports = function () {
	return callsites()[2].getFileName();
};