UNPKG
math_example_chevreuil
Version:
latest (1.0.0)
1.0.0
Un exemple de création de Package
math_example_chevreuil
/
lib
/
call_counter.js
11 lines
(6 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
var
internal_call_counter=
0
;
function
count_call
(
) { ++internal_call_counter;
console
.
log
(
"Vous avez effectué "
+ internal_call_counter +
" Appel !"
); }
module
.
exports
=count_call;