🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
10 lines
133 B
JavaScript
Executable File
10 lines
133 B
JavaScript
Executable File
'use strict';
|
|
|
|
var util = require('./util');
|
|
|
|
module.exports = SchemaObject;
|
|
|
|
function SchemaObject(obj) {
|
|
util.copy(obj, this);
|
|
}
|