Skip to content

Instantly share code, notes, and snippets.

@nisargap
Created January 4, 2017 02:59
Show Gist options
  • Save nisargap/a6a2077ea0ee32a52ffb2cdda559e28d to your computer and use it in GitHub Desktop.
Save nisargap/a6a2077ea0ee32a52ffb2cdda559e28d to your computer and use it in GitHub Desktop.
function oneFunction() {
console.log("hello fam");
}
function twoFunction() {
console.log("hello fam again");
}
var objectToExport = {
one: oneFunction,
two: twoFunction
}
module.exports = objectToExport;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment