Skip to content
Snippets Groups Projects
Forked from Nils Tesdal / DatabaseTest
31 commits behind the upstream repository.
sum.js 60 B
function sum(a, b) {
  return a + b;
}
module.exports = sum;