13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var base = module.superModule;
|
||
|
|
||
|
function store(storeObject) {
|
||
|
base.call(this, storeObject);
|
||
|
this.email = storeObject.email;
|
||
|
}
|
||
|
|
||
|
store.prototype = Object.create(base.prototype);
|
||
|
|
||
|
module.exports = store;
|