This commit reflects an intentional reorganization of the project. - Deletes obsolete root-level files. - Restructures the admin and gallery components. - Tracks previously untracked application modules.
17 lines
258 B
JavaScript
17 lines
258 B
JavaScript
'use strict';
|
|
|
|
const clone = require('../helpers/clone');
|
|
|
|
class SaveOptions {
|
|
constructor(obj) {
|
|
if (obj == null) {
|
|
return;
|
|
}
|
|
Object.assign(this, clone(obj));
|
|
}
|
|
}
|
|
|
|
SaveOptions.prototype.__subdocs = null;
|
|
|
|
module.exports = SaveOptions;
|