Home
last modified time | relevance | path

Searched refs:obj1 (Results 1 – 2 of 2) sorted by relevance

/misc/config_tools/configurator/packages/vue-json-schema-form/utils/
A Dutils.js44 export function mergeSchemas(obj1, obj2) { argument
45 const acc = Object.assign({}, obj1); // Prevent mutation of source object.
48 const left = obj1 ? obj1[key] : {};
50 if (obj1 && obj1.hasOwnProperty(key) && isObject(right)) {
53 obj1
55 && (getSchemaType(obj1) === 'object' || getSchemaType(obj2) === 'object')
71 export function mergeObjects(obj1, obj2, concatArrays = false) { argument
73 const preAcc = Object.assign({}, obj1); // Prevent mutation of source object.
77 const left = obj1 ? obj1[key] : {};
79 if (obj1 && obj1.hasOwnProperty(key) && isObject(right)) {
/misc/config_tools/configurator/packages/vue-json-schema-form/utils/schema/
A Dretriev.js220 const obj1 = isObject(copyArgs[0]) ? copyArgs[0] : {};
223 preVal = Object.assign({}, obj1);
225 const left = obj1[key];

Completed in 5 milliseconds