1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-03-12 06:14:35 +00:00

10 lines
133 B
JavaScript
Raw Normal View History

2019-05-30 12:06:47 +03:00
'use strict';
var util = require('./util');
module.exports = SchemaObject;
function SchemaObject(obj) {
util.copy(obj, this);
}