tshm
1/14/2015 - 1:45 PM

javascript library template.

javascript library template.

(function(global) {
    "use strict;"

    // Your Module
    function YourModule() {
        // ...
    }

    // Exports
    if ("process" in global) {
        module["exports"] = YourModule;
    }
    global["YourModule"] = YourModule;

})((this || 0).self || global);