ui
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function merge(value) {
|
||||
var arrayOrObject = value;
|
||||
|
||||
if (typeof arrayOrObject === 'string') {
|
||||
arrayOrObject = [arrayOrObject];
|
||||
}
|
||||
|
||||
if (Array.isArray(this.items) && Array.isArray(arrayOrObject)) {
|
||||
return new this.constructor(this.items.concat(arrayOrObject));
|
||||
}
|
||||
|
||||
var collection = JSON.parse(JSON.stringify(this.items));
|
||||
|
||||
Object.keys(arrayOrObject).forEach(function (key) {
|
||||
collection[key] = arrayOrObject[key];
|
||||
});
|
||||
|
||||
return new this.constructor(collection);
|
||||
};
|
||||
Reference in New Issue
Block a user