Skip to content

Instantly share code, notes, and snippets.

@simongong
Created May 10, 2016 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simongong/26bbddd5f5d0d1fbe0d163f20c55d697 to your computer and use it in GitHub Desktop.
Save simongong/26bbddd5f5d0d1fbe0d163f20c55d697 to your computer and use it in GitHub Desktop.
Add display name for functions in a commonJS module
for(var func in module.exports) {
if (typeof module.exports[func] === 'function') {
module.exports[func].displayName = func;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment