UNPKG
http-teapot-comment
Version:
latest (0.1.0)
0.1.0
A comment system for your website
github.com/http-teapot/comment
http-teapot/comment
http-teapot-comment
/
app
/
model
/
user.js
8 lines
(6 loc)
•
130 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
var User
=
function
(
attributes
)
{
for
(
attr
in
attributes
)
{
this
[
attr
]
=
attributes
[
attr
]
;
}
}
; module.exports
=
User;