1'use strict'; 2 3var util = require('./util'); 4 5module.exports = SchemaObject; 6 7function SchemaObject(obj) { 8 util.copy(obj, this); 9} 10 11