MOOver.js/node_modules/mongoose/lib/options/removeOptions.js
2022-02-18 13:54:33 +01:00

14 lines
No EOL
220 B
JavaScript

'use strict';
const clone = require('../helpers/clone');
class RemoveOptions {
constructor(obj) {
if (obj == null) {
return;
}
Object.assign(this, clone(obj));
}
}
module.exports = RemoveOptions;