UNPKG
maths_example_abcdef
Version:
latest (1.0.0)
1.0.0
un exemple ce création de package
maths_example_abcdef
/
lib
/
call_counter.js
7 lines
(6 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
7
var
internal_call_counter=
0
;
function
count_call
(
){ ++internal_call_counter;
console
.
log
(
'Vous avez effectué '
+internal_call_counter+
' appel(s)'
); }
module
.
exports
=count_call;