Skip to content

Instantly share code, notes, and snippets.

@naosim
Created December 28, 2014 12:53
Show Gist options
  • Save naosim/61fb239d1759a681a561 to your computer and use it in GitHub Desktop.
Save naosim/61fb239d1759a681a561 to your computer and use it in GitHub Desktop.
行儀のよいJavaScript
// 最近の行儀のよい JavaScript の書き方
// http://qiita.com/kaiinui/items/22a75d2adc56a40da7b7
(function(global) {
"use strict;"
// Your Module
function YourModule() {
// ...
};
// Exports
if ("process" in global) {
module["exports"] = YourModule;
}
global["YourModule"] = YourModule;
})((this || 0).self || global);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment