Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created June 11, 2018 06:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/4a3f2843d981beaa26fa8e923a9f511d to your computer and use it in GitHub Desktop.
Save kunigami/4a3f2843d981beaa26fa8e923a9f511d to your computer and use it in GitHub Desktop.
function add(x, y) {
return x + y | 0;
}
function sub(x, y) {
return x - y | 0;
}
var MyModule = /* module */[
/* add */add,
/* sub */sub
];
exports.MyModule = MyModule;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment