basant307/AI_Governance_Project
045
1'use strict';2 3const callsites = () => {4 const _prepareStackTrace = Error.prepareStackTrace;5 Error.prepareStackTrace = (_, stack) => stack;6 const stack = new Error().stack.slice(1);7 Error.prepareStackTrace = _prepareStackTrace;8 return stack;9};10 11module.exports = callsites;12// TODO: Remove this for the next major release13module.exports.default = callsites;14 