UNPKG
pdp-g-7
Version:
latest (1.0.0)
1.0.0
For Explain Semantice Versioning
github.com/PDP-FRONTEND/PDP-G-7
PDP-FRONTEND/PDP-G-7
pdp-g-7
/
main.js
11 lines
(9 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
function
summa
(
a, b, operation
) {
return
{
first
: a,
second
: b,
operation
: operation,
value
:
eval
(
`
${a}
${operation}
${b}
`
), }; }
module
.
exports
= summa;