UNPKG
npm-componente
Version:
latest (1.0.0)
1.0.0
Un paquete npm que exporta funciones para sumar y restar.
npm-componente
/
index.js
13 lines
(10 loc)
•
141 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function
suma
(
a, b
) {
return
a + b; }
function
resta
(
a, b
) {
return
a - b; }
module
.
exports
= { suma, resta };