UNPKG

216 BJavaScriptView Raw
1'use strict';
2
3const clone = require('../helpers/clone');
4
5class SaveOptions {
6 constructor(obj) {
7 if (obj == null) {
8 return;
9 }
10 Object.assign(this, clone(obj));
11 }
12}
13
14module.exports = SaveOptions;
\No newline at end of file