Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

saveOptions.js 214B

1234567891011121314
  1. 'use strict';
  2. const utils = require('../utils');
  3. class SaveOptions {
  4. constructor(obj) {
  5. if (obj == null) {
  6. return;
  7. }
  8. Object.assign(this, utils.clone(obj));
  9. }
  10. }
  11. module.exports = SaveOptions;