UNPKG

juanhiennvdm_math_example

Version:

An example of creating a package

18 lines (13 loc) 266 B
var call_counter = require('./call_counter.js'); function add(x, y) { call_counter(); return x + y; }; function subtract(x, y) { call_counter(); return x - y; }; module.exports = { addition: add, subtraction: subtract };