UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

17 lines (12 loc) 258 B
'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;