UNPKG
pome-cli
Version:
latest (0.1.3)
0.1.3
pome command line client for managing pome
pome-cli
/
test
/
proto.js
15 lines
(10 loc)
•
166 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
obj =
function
(
){
this
.
app
=
1
; } obj.
prototype
.
add
=
function
(
){ }
var
a =
new
obj
();
console
.
log
(a);
for
(
var
key
in
a){
console
.
log
(key); }