Skip to content

Instantly share code, notes, and snippets.

@joepie91
Created October 27, 2015 19:41
Show Gist options
  • Save joepie91/42c1cc8df2b351219c5c to your computer and use it in GitHub Desktop.
Save joepie91/42c1cc8df2b351219c5c to your computer and use it in GitHub Desktop.
CommonJS module example
module.exports = function(number) {
return number * 2;
}
var doubleNumber = require("./double-number");
console.log(doubleNumber(4)); // 8
@norsez
Copy link

norsez commented Jul 6, 2018

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment