Skip to content

Instantly share code, notes, and snippets.

@dmcassel
Created September 14, 2015 20:26
Show Gist options
  • Save dmcassel/0b76ff1b20341327bcd3 to your computer and use it in GitHub Desktop.
Save dmcassel/0b76ff1b20341327bcd3 to your computer and use it in GitHub Desktop.
// utilities.sjs
// Library modules can require other library modules.
var o = require("../other.sjs");
module.exports = {
// Maps the internal implementation to a public name.
doSomething: internalSomething
};
// "Protected" function not accessible outside of the current module.
function internalSomething() {
// Do something…
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment