Created
December 28, 2014 12:53
-
-
Save naosim/61fb239d1759a681a561 to your computer and use it in GitHub Desktop.
行儀のよいJavaScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 最近の行儀のよい 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