UNPKG
math_demo
Version:
latest (1.6.2)
1.6.2
1.6.1
1.6.0
1.5.0
An demo of createing a package
math_demo
/
lib
/
call_counter.js
10 lines
(6 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
internal_call_counter=
0
;
function
count_call
(
){ ++internal_call_counter;
console
.
log
(
'You have made '
+internal_call_counter+
' call.'
); }
module
.
exports
=count_call;