Event-Planner / node_modules / mongoose / lib / options / saveOptions.js
saveOptions.js
Raw
'use strict';

const clone = require('../helpers/clone');

class SaveOptions {
  constructor(obj) {
    if (obj == null) {
      return;
    }
    Object.assign(this, clone(obj));
  }
}

module.exports = SaveOptions;