Welcome to mirror list, hosted at ThFree Co, Russian Federation.

schema_obj.js « compile « lib « ajv « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7903b0f46b4ed31556b276289d17c0a29f2f642 (plain)
1
2
3
4
5
6
7
8
9
'use strict';

var util = require('./util');

module.exports = SchemaObject;

function SchemaObject(obj) {
  util.copy(obj, this);
}