UNPKG
rejoin
Version:
latest (0.0.0)
0.0.0
Another Object/Relational-Mapper
github.com/martinandert/rejoin
martinandert/rejoin
rejoin
/
lib
/
core
/
ModelBase.js
11 lines
(7 loc)
•
163 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
function
ModelBase
(
) {
this
.
initialize
.
apply
(
this
,
arguments
); }
ModelBase
.
prototype
.
initialize
=
function
(
) { };
module
.
exports
=
ModelBase
;