UNPKG
myself_module007
Version:
latest (1.0.0)
1.0.0
this is a module of test
myself_module007
/
index.js
9 lines
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
action={
name
:
"咸鱼"
,
age
:
999
,
life
:
function
(
){
console
.
log
(
this
.
name
+
"---"
+
this
.
age
+
"---"
);
return
1
;
//没有返回值调用时会输出一个undefined
} };
module
.
exports
=action;