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);