Skip to content

Instantly share code, notes, and snippets.

@andrewbonnington
Created June 14, 2018 15:37
Show Gist options
  • Select an option

  • Save andrewbonnington/f114a58fa86460faf06835c166d4cc72 to your computer and use it in GitHub Desktop.

Select an option

Save andrewbonnington/f114a58fa86460faf06835c166d4cc72 to your computer and use it in GitHub Desktop.
console.caller = function (arguments) {
if (arguments.callee.caller == null) {
console.log('Caller: Global scope');
} else {
console.log('Caller: ' + arguments.callee.caller.name);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment