meanjs/19-rutas-con-express/2-parametros/matematicas.js

18 строки
288 B
JavaScript

var Matematicas = (function(){
return {
sumar: function(a,b){
return obtenerNumero(a) + obtenerNumero(b);
},
restar: function(a,b){
return obtenerNumero(a) - obtenerNumero(b);
}
}
function obtenerNumero(texto){
return texto*1;
}
})();
module.exports = Matematicas;