Skip to content

Instantly share code, notes, and snippets.

@XoseLluis
Created December 24, 2012 16:36
Show Gist options
  • Save XoseLluis/4369918 to your computer and use it in GitHub Desktop.
Save XoseLluis/4369918 to your computer and use it in GitHub Desktop.
Are we running on node.js?
function runningOnNode(){
return typeof module !== 'undefined' && module.exports;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment