mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-08 15:22:43 +08:00
10 lines
133 B
JavaScript
10 lines
133 B
JavaScript
'use strict';
|
|
|
|
var util = require('./util');
|
|
|
|
module.exports = SchemaObject;
|
|
|
|
function SchemaObject(obj) {
|
|
util.copy(obj, this);
|
|
}
|