Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Created January 15, 2014 00:05
Show Gist options
  • Save prabirshrestha/8428435 to your computer and use it in GitHub Desktop.
Save prabirshrestha/8428435 to your computer and use it in GitHub Desktop.
isNode.js
(function (isNode) {
var public = {};
if (isNode) {
module.exports = public;
} else {
window.public = public;
}
})(typeof module !== 'undefined' && typeof module.exports !== 'undefined' && typeof exports !== 'undefined');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment