UNPKG
primer_1
Version:
latest (2.0.0)
2.0.0
1.0.0
Primer iz prosojnic 1
primer_1
/
Test_Primer_1a
/
node_modules
/
primer_1
/
index.js
12 lines
(10 loc)
•
146 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
function add(
x
,
y
) {
return
x
+
y
; } function
sub
(
x
,
y
)
{
return
x
-
y
; } module.exports.add = add; module.exports.sub =
sub
;