first commit
This commit is contained in:
141
app_vue/node_modules/deepmerge/README.markdown
generated
vendored
Normal file
141
app_vue/node_modules/deepmerge/README.markdown
generated
vendored
Normal file
@ -0,0 +1,141 @@
|
||||
deepmerge
|
||||
=========
|
||||
|
||||
> ~540B gzipped, ~1.1kB minified
|
||||
|
||||
Merge the enumerable attributes of two objects deeply.
|
||||
|
||||
the future
|
||||
----------
|
||||
|
||||
Should we publish a version 2? [Give your opinion.](https://github.com/KyleAMathews/deepmerge/issues/72)
|
||||
|
||||
example
|
||||
=======
|
||||
|
||||
<!--js
|
||||
var merge = require('./')
|
||||
-->
|
||||
|
||||
```js
|
||||
var x = {
|
||||
foo: { bar: 3 },
|
||||
array: [{
|
||||
does: 'work',
|
||||
too: [ 1, 2, 3 ]
|
||||
}]
|
||||
}
|
||||
|
||||
var y = {
|
||||
foo: { baz: 4 },
|
||||
quux: 5,
|
||||
array: [{
|
||||
does: 'work',
|
||||
too: [ 4, 5, 6 ]
|
||||
}, {
|
||||
really: 'yes'
|
||||
}]
|
||||
}
|
||||
|
||||
var expected = {
|
||||
foo: {
|
||||
bar: 3,
|
||||
baz: 4
|
||||
},
|
||||
array: [{
|
||||
does: 'work',
|
||||
too: [ 1, 2, 3, 4, 5, 6 ]
|
||||
}, {
|
||||
really: 'yes'
|
||||
}],
|
||||
quux: 5
|
||||
}
|
||||
|
||||
merge(x, y) // => expected
|
||||
```
|
||||
|
||||
methods
|
||||
=======
|
||||
|
||||
```
|
||||
var merge = require('deepmerge')
|
||||
```
|
||||
|
||||
merge(x, y, [options])
|
||||
-----------
|
||||
|
||||
Merge two objects `x` and `y` deeply, returning a new merged object with the
|
||||
elements from both `x` and `y`.
|
||||
|
||||
If an element at the same key is present for both `x` and `y`, the value from
|
||||
`y` will appear in the result.
|
||||
|
||||
Merging creates a new object, so that neither `x` or `y` are be modified. However, child objects on `x` or `y` are copied over - if you want to copy all values, you must pass `true` to the clone option.
|
||||
|
||||
merge.all(arrayOfObjects, [options])
|
||||
-----------
|
||||
|
||||
Merges two or more objects into a single result object.
|
||||
|
||||
```js
|
||||
var x = { foo: { bar: 3 } }
|
||||
var y = { foo: { baz: 4 } }
|
||||
var z = { bar: 'yay!' }
|
||||
|
||||
var expected = { foo: { bar: 3, baz: 4 }, bar: 'yay!' }
|
||||
|
||||
merge.all([x, y, z]) // => expected
|
||||
```
|
||||
|
||||
### options
|
||||
|
||||
#### arrayMerge
|
||||
|
||||
The merge will also merge arrays and array values by default. However, there are nigh-infinite valid ways to merge arrays, and you may want to supply your own. You can do this by passing an `arrayMerge` function as an option.
|
||||
|
||||
```js
|
||||
function concatMerge(destinationArray, sourceArray, options) {
|
||||
destinationArray // => [1, 2, 3]
|
||||
sourceArray // => [3, 2, 1]
|
||||
options // => { arrayMerge: concatMerge }
|
||||
return destinationArray.concat(sourceArray)
|
||||
}
|
||||
merge([1, 2, 3], [3, 2, 1], { arrayMerge: concatMerge }) // => [1, 2, 3, 3, 2, 1]
|
||||
```
|
||||
|
||||
To prevent arrays from being merged:
|
||||
|
||||
```js
|
||||
const dontMerge = (destination, source) => source
|
||||
const output = merge({ coolThing: [1,2,3] }, { coolThing: ['a', 'b', 'c'] }, { arrayMerge: dontMerge })
|
||||
output // => { coolThing: ['a', 'b', 'c'] }
|
||||
```
|
||||
|
||||
#### clone
|
||||
|
||||
Defaults to `false`. If `clone` is `true` then both `x` and `y` are recursively cloned as part of the merge.
|
||||
|
||||
install
|
||||
=======
|
||||
|
||||
With [npm](http://npmjs.org) do:
|
||||
|
||||
```sh
|
||||
npm install deepmerge
|
||||
```
|
||||
|
||||
Just want to download the file without using any package managers/bundlers? [Download the UMD version from unpkg.com](https://unpkg.com/deepmerge/dist/umd.js).
|
||||
|
||||
test
|
||||
====
|
||||
|
||||
With [npm](http://npmjs.org) do:
|
||||
|
||||
```sh
|
||||
npm test
|
||||
```
|
||||
|
||||
license
|
||||
=======
|
||||
|
||||
MIT
|
77
app_vue/node_modules/deepmerge/changelog.md
generated
vendored
Normal file
77
app_vue/node_modules/deepmerge/changelog.md
generated
vendored
Normal file
@ -0,0 +1,77 @@
|
||||
# [1.5.2](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.5.2)
|
||||
|
||||
- fix: no longer attempts to merge React elements [#76](https://github.com/KyleAMathews/deepmerge/issues/76)
|
||||
|
||||
# [1.5.1](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.5.1)
|
||||
|
||||
- bower support: officially dropping bower support. If you use bower, please depend on the [unpkg distribution](https://unpkg.com/deepmerge/dist/umd.js). See [#63](https://github.com/KyleAMathews/deepmerge/issues/63)
|
||||
|
||||
# [1.5.0](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.5.0)
|
||||
|
||||
- bug fix: merging objects into arrays was allowed, and doesn't make any sense. [#65](https://github.com/KyleAMathews/deepmerge/issues/65) published as a feature release instead of a patch because it is a decent behavior change.
|
||||
|
||||
# [1.4.4](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.4.4)
|
||||
|
||||
- bower support: updated `main` in bower.json
|
||||
|
||||
# [1.4.3](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.4.3)
|
||||
|
||||
- bower support: inline is-mergeable-object in a new CommonJS build, so that people using both bower and CommonJS can bundle the library [0b34e6](https://github.com/KyleAMathews/deepmerge/commit/0b34e6e95f989f2fc8091d25f0d291c08f3d2d24)
|
||||
|
||||
# [1.4.2](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.4.2)
|
||||
|
||||
- performance: bump is-mergeable-object dependency version for a slight performance improvement [5906c7](https://github.com/KyleAMathews/deepmerge/commit/5906c765d691d48e83d76efbb0d4b9ca150dc12c)
|
||||
|
||||
# [1.4.1](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.4.1)
|
||||
|
||||
- documentation: fix unpkg link [acc45b](https://github.com/KyleAMathews/deepmerge/commit/acc45be85519c1df906a72ecb24764b622d18d47)
|
||||
|
||||
# [1.4.0](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.4.0)
|
||||
|
||||
- api: instead of only exporting a UMD module, expose a UMD module with `pkg.main`, a CJS module with `pkg.browser`, and an ES module with `pkg.module` [#62](https://github.com/KyleAMathews/deepmerge/pull/62)
|
||||
|
||||
# [1.3.2](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.3.2)
|
||||
|
||||
- documentation: note the minified/gzipped file sizes [56](https://github.com/KyleAMathews/deepmerge/pull/56)
|
||||
- documentation: make data structures more readable in merge example: pull request [57](https://github.com/KyleAMathews/deepmerge/pull/57)
|
||||
|
||||
# [1.3.1](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.3.1)
|
||||
|
||||
- documentation: clarify and test some array merging documentation: pull request [51](https://github.com/KyleAMathews/deepmerge/pull/51)
|
||||
|
||||
# [1.3.0](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.3.0)
|
||||
|
||||
- feature: `merge.all`, a merge function that merges any number of objects: pull request [50](https://github.com/KyleAMathews/deepmerge/pull/50)
|
||||
|
||||
# [1.2.0](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.2.0)
|
||||
|
||||
- fix: an error that would be thrown when an array would be merged onto a truthy non-array value: pull request [46](https://github.com/KyleAMathews/deepmerge/pull/46)
|
||||
- feature: the ability to clone: Issue [28](https://github.com/KyleAMathews/deepmerge/issues/28), pull requests [44](https://github.com/KyleAMathews/deepmerge/pull/44) and [48](https://github.com/KyleAMathews/deepmerge/pull/48)
|
||||
- maintenance: added tests + travis to `.npmignore`: pull request [47](https://github.com/KyleAMathews/deepmerge/pull/47)
|
||||
|
||||
# [1.1.1](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.1.1)
|
||||
|
||||
- fix an issue where an error was thrown when merging an array onto a non-array: [Pull request 46](https://github.com/KyleAMathews/deepmerge/pull/46)
|
||||
|
||||
# [1.1.0](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.1.0)
|
||||
|
||||
- allow consumers to specify their own array merging algorithm: [Pull request 37](https://github.com/KyleAMathews/deepmerge/pull/37)
|
||||
|
||||
# [1.0.3](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.0.3)
|
||||
|
||||
- adding bower.json back: [Issue 38](https://github.com/KyleAMathews/deepmerge/pull/38)
|
||||
- updating keywords and Github links in package.json [bc3898e](https://github.com/KyleAMathews/deepmerge/commit/bc3898e587a56f74591328f40f656b0152c1d5eb)
|
||||
|
||||
# [1.0.2](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.0.2)
|
||||
|
||||
- Updating the readme: dropping bower, testing that the example works: [7102fc](https://github.com/KyleAMathews/deepmerge/commit/7102fcc4ddec11e2d33205866f9f18df14e5aeb5)
|
||||
|
||||
# [1.0.1](https://github.com/KyleAMathews/deepmerge/releases/tag/v1.0.1)
|
||||
|
||||
- `null`, dates, and regular expressions are now properly merged in arrays: [Issue 18](https://github.com/KyleAMathews/deepmerge/pull/18), plus commit: [ef1c6b](https://github.com/KyleAMathews/deepmerge/commit/ef1c6bac8350ba12a24966f0bc7da02560827586)
|
||||
|
||||
# 1.0.0
|
||||
|
||||
- Should only be a patch change, because this module is READY. [Issue 15](https://github.com/KyleAMathews/deepmerge/issues/15)
|
||||
- Regular expressions are now treated like primitive values when merging: [Issue 30](https://github.com/KyleAMathews/deepmerge/pull/30)
|
||||
- Dates are now treated like primitives when merging: [Issue 31](https://github.com/KyleAMathews/deepmerge/issues/31)
|
97
app_vue/node_modules/deepmerge/dist/cjs.js
generated
vendored
Normal file
97
app_vue/node_modules/deepmerge/dist/cjs.js
generated
vendored
Normal file
@ -0,0 +1,97 @@
|
||||
'use strict';
|
||||
|
||||
var isMergeableObject = function isMergeableObject(value) {
|
||||
return isNonNullObject(value)
|
||||
&& !isSpecial(value)
|
||||
};
|
||||
|
||||
function isNonNullObject(value) {
|
||||
return !!value && typeof value === 'object'
|
||||
}
|
||||
|
||||
function isSpecial(value) {
|
||||
var stringValue = Object.prototype.toString.call(value);
|
||||
|
||||
return stringValue === '[object RegExp]'
|
||||
|| stringValue === '[object Date]'
|
||||
|| isReactElement(value)
|
||||
}
|
||||
|
||||
// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
|
||||
var canUseSymbol = typeof Symbol === 'function' && Symbol.for;
|
||||
var REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7;
|
||||
|
||||
function isReactElement(value) {
|
||||
return value.$$typeof === REACT_ELEMENT_TYPE
|
||||
}
|
||||
|
||||
function emptyTarget(val) {
|
||||
return Array.isArray(val) ? [] : {}
|
||||
}
|
||||
|
||||
function cloneIfNecessary(value, optionsArgument) {
|
||||
var clone = optionsArgument && optionsArgument.clone === true;
|
||||
return (clone && isMergeableObject(value)) ? deepmerge(emptyTarget(value), value, optionsArgument) : value
|
||||
}
|
||||
|
||||
function defaultArrayMerge(target, source, optionsArgument) {
|
||||
var destination = target.slice();
|
||||
source.forEach(function(e, i) {
|
||||
if (typeof destination[i] === 'undefined') {
|
||||
destination[i] = cloneIfNecessary(e, optionsArgument);
|
||||
} else if (isMergeableObject(e)) {
|
||||
destination[i] = deepmerge(target[i], e, optionsArgument);
|
||||
} else if (target.indexOf(e) === -1) {
|
||||
destination.push(cloneIfNecessary(e, optionsArgument));
|
||||
}
|
||||
});
|
||||
return destination
|
||||
}
|
||||
|
||||
function mergeObject(target, source, optionsArgument) {
|
||||
var destination = {};
|
||||
if (isMergeableObject(target)) {
|
||||
Object.keys(target).forEach(function(key) {
|
||||
destination[key] = cloneIfNecessary(target[key], optionsArgument);
|
||||
});
|
||||
}
|
||||
Object.keys(source).forEach(function(key) {
|
||||
if (!isMergeableObject(source[key]) || !target[key]) {
|
||||
destination[key] = cloneIfNecessary(source[key], optionsArgument);
|
||||
} else {
|
||||
destination[key] = deepmerge(target[key], source[key], optionsArgument);
|
||||
}
|
||||
});
|
||||
return destination
|
||||
}
|
||||
|
||||
function deepmerge(target, source, optionsArgument) {
|
||||
var sourceIsArray = Array.isArray(source);
|
||||
var targetIsArray = Array.isArray(target);
|
||||
var options = optionsArgument || { arrayMerge: defaultArrayMerge };
|
||||
var sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
|
||||
|
||||
if (!sourceAndTargetTypesMatch) {
|
||||
return cloneIfNecessary(source, optionsArgument)
|
||||
} else if (sourceIsArray) {
|
||||
var arrayMerge = options.arrayMerge || defaultArrayMerge;
|
||||
return arrayMerge(target, source, optionsArgument)
|
||||
} else {
|
||||
return mergeObject(target, source, optionsArgument)
|
||||
}
|
||||
}
|
||||
|
||||
deepmerge.all = function deepmergeAll(array, optionsArgument) {
|
||||
if (!Array.isArray(array) || array.length < 2) {
|
||||
throw new Error('first argument should be an array with at least two elements')
|
||||
}
|
||||
|
||||
// we are sure there are at least 2 values, so it is safe to have no initial value
|
||||
return array.reduce(function(prev, next) {
|
||||
return deepmerge(prev, next, optionsArgument)
|
||||
})
|
||||
};
|
||||
|
||||
var deepmerge_1 = deepmerge;
|
||||
|
||||
module.exports = deepmerge_1;
|
95
app_vue/node_modules/deepmerge/dist/es.js
generated
vendored
Normal file
95
app_vue/node_modules/deepmerge/dist/es.js
generated
vendored
Normal file
@ -0,0 +1,95 @@
|
||||
var isMergeableObject = function isMergeableObject(value) {
|
||||
return isNonNullObject(value)
|
||||
&& !isSpecial(value)
|
||||
};
|
||||
|
||||
function isNonNullObject(value) {
|
||||
return !!value && typeof value === 'object'
|
||||
}
|
||||
|
||||
function isSpecial(value) {
|
||||
var stringValue = Object.prototype.toString.call(value);
|
||||
|
||||
return stringValue === '[object RegExp]'
|
||||
|| stringValue === '[object Date]'
|
||||
|| isReactElement(value)
|
||||
}
|
||||
|
||||
// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
|
||||
var canUseSymbol = typeof Symbol === 'function' && Symbol.for;
|
||||
var REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7;
|
||||
|
||||
function isReactElement(value) {
|
||||
return value.$$typeof === REACT_ELEMENT_TYPE
|
||||
}
|
||||
|
||||
function emptyTarget(val) {
|
||||
return Array.isArray(val) ? [] : {}
|
||||
}
|
||||
|
||||
function cloneIfNecessary(value, optionsArgument) {
|
||||
var clone = optionsArgument && optionsArgument.clone === true;
|
||||
return (clone && isMergeableObject(value)) ? deepmerge(emptyTarget(value), value, optionsArgument) : value
|
||||
}
|
||||
|
||||
function defaultArrayMerge(target, source, optionsArgument) {
|
||||
var destination = target.slice();
|
||||
source.forEach(function(e, i) {
|
||||
if (typeof destination[i] === 'undefined') {
|
||||
destination[i] = cloneIfNecessary(e, optionsArgument);
|
||||
} else if (isMergeableObject(e)) {
|
||||
destination[i] = deepmerge(target[i], e, optionsArgument);
|
||||
} else if (target.indexOf(e) === -1) {
|
||||
destination.push(cloneIfNecessary(e, optionsArgument));
|
||||
}
|
||||
});
|
||||
return destination
|
||||
}
|
||||
|
||||
function mergeObject(target, source, optionsArgument) {
|
||||
var destination = {};
|
||||
if (isMergeableObject(target)) {
|
||||
Object.keys(target).forEach(function(key) {
|
||||
destination[key] = cloneIfNecessary(target[key], optionsArgument);
|
||||
});
|
||||
}
|
||||
Object.keys(source).forEach(function(key) {
|
||||
if (!isMergeableObject(source[key]) || !target[key]) {
|
||||
destination[key] = cloneIfNecessary(source[key], optionsArgument);
|
||||
} else {
|
||||
destination[key] = deepmerge(target[key], source[key], optionsArgument);
|
||||
}
|
||||
});
|
||||
return destination
|
||||
}
|
||||
|
||||
function deepmerge(target, source, optionsArgument) {
|
||||
var sourceIsArray = Array.isArray(source);
|
||||
var targetIsArray = Array.isArray(target);
|
||||
var options = optionsArgument || { arrayMerge: defaultArrayMerge };
|
||||
var sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
|
||||
|
||||
if (!sourceAndTargetTypesMatch) {
|
||||
return cloneIfNecessary(source, optionsArgument)
|
||||
} else if (sourceIsArray) {
|
||||
var arrayMerge = options.arrayMerge || defaultArrayMerge;
|
||||
return arrayMerge(target, source, optionsArgument)
|
||||
} else {
|
||||
return mergeObject(target, source, optionsArgument)
|
||||
}
|
||||
}
|
||||
|
||||
deepmerge.all = function deepmergeAll(array, optionsArgument) {
|
||||
if (!Array.isArray(array) || array.length < 2) {
|
||||
throw new Error('first argument should be an array with at least two elements')
|
||||
}
|
||||
|
||||
// we are sure there are at least 2 values, so it is safe to have no initial value
|
||||
return array.reduce(function(prev, next) {
|
||||
return deepmerge(prev, next, optionsArgument)
|
||||
})
|
||||
};
|
||||
|
||||
var deepmerge_1 = deepmerge;
|
||||
|
||||
export default deepmerge_1;
|
103
app_vue/node_modules/deepmerge/dist/umd.js
generated
vendored
Normal file
103
app_vue/node_modules/deepmerge/dist/umd.js
generated
vendored
Normal file
@ -0,0 +1,103 @@
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
typeof define === 'function' && define.amd ? define(factory) :
|
||||
(global.deepmerge = factory());
|
||||
}(this, (function () { 'use strict';
|
||||
|
||||
var isMergeableObject = function isMergeableObject(value) {
|
||||
return isNonNullObject(value)
|
||||
&& !isSpecial(value)
|
||||
};
|
||||
|
||||
function isNonNullObject(value) {
|
||||
return !!value && typeof value === 'object'
|
||||
}
|
||||
|
||||
function isSpecial(value) {
|
||||
var stringValue = Object.prototype.toString.call(value);
|
||||
|
||||
return stringValue === '[object RegExp]'
|
||||
|| stringValue === '[object Date]'
|
||||
|| isReactElement(value)
|
||||
}
|
||||
|
||||
// see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25
|
||||
var canUseSymbol = typeof Symbol === 'function' && Symbol.for;
|
||||
var REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for('react.element') : 0xeac7;
|
||||
|
||||
function isReactElement(value) {
|
||||
return value.$$typeof === REACT_ELEMENT_TYPE
|
||||
}
|
||||
|
||||
function emptyTarget(val) {
|
||||
return Array.isArray(val) ? [] : {}
|
||||
}
|
||||
|
||||
function cloneIfNecessary(value, optionsArgument) {
|
||||
var clone = optionsArgument && optionsArgument.clone === true;
|
||||
return (clone && isMergeableObject(value)) ? deepmerge(emptyTarget(value), value, optionsArgument) : value
|
||||
}
|
||||
|
||||
function defaultArrayMerge(target, source, optionsArgument) {
|
||||
var destination = target.slice();
|
||||
source.forEach(function(e, i) {
|
||||
if (typeof destination[i] === 'undefined') {
|
||||
destination[i] = cloneIfNecessary(e, optionsArgument);
|
||||
} else if (isMergeableObject(e)) {
|
||||
destination[i] = deepmerge(target[i], e, optionsArgument);
|
||||
} else if (target.indexOf(e) === -1) {
|
||||
destination.push(cloneIfNecessary(e, optionsArgument));
|
||||
}
|
||||
});
|
||||
return destination
|
||||
}
|
||||
|
||||
function mergeObject(target, source, optionsArgument) {
|
||||
var destination = {};
|
||||
if (isMergeableObject(target)) {
|
||||
Object.keys(target).forEach(function(key) {
|
||||
destination[key] = cloneIfNecessary(target[key], optionsArgument);
|
||||
});
|
||||
}
|
||||
Object.keys(source).forEach(function(key) {
|
||||
if (!isMergeableObject(source[key]) || !target[key]) {
|
||||
destination[key] = cloneIfNecessary(source[key], optionsArgument);
|
||||
} else {
|
||||
destination[key] = deepmerge(target[key], source[key], optionsArgument);
|
||||
}
|
||||
});
|
||||
return destination
|
||||
}
|
||||
|
||||
function deepmerge(target, source, optionsArgument) {
|
||||
var sourceIsArray = Array.isArray(source);
|
||||
var targetIsArray = Array.isArray(target);
|
||||
var options = optionsArgument || { arrayMerge: defaultArrayMerge };
|
||||
var sourceAndTargetTypesMatch = sourceIsArray === targetIsArray;
|
||||
|
||||
if (!sourceAndTargetTypesMatch) {
|
||||
return cloneIfNecessary(source, optionsArgument)
|
||||
} else if (sourceIsArray) {
|
||||
var arrayMerge = options.arrayMerge || defaultArrayMerge;
|
||||
return arrayMerge(target, source, optionsArgument)
|
||||
} else {
|
||||
return mergeObject(target, source, optionsArgument)
|
||||
}
|
||||
}
|
||||
|
||||
deepmerge.all = function deepmergeAll(array, optionsArgument) {
|
||||
if (!Array.isArray(array) || array.length < 2) {
|
||||
throw new Error('first argument should be an array with at least two elements')
|
||||
}
|
||||
|
||||
// we are sure there are at least 2 values, so it is safe to have no initial value
|
||||
return array.reduce(function(prev, next) {
|
||||
return deepmerge(prev, next, optionsArgument)
|
||||
})
|
||||
};
|
||||
|
||||
var deepmerge_1 = deepmerge;
|
||||
|
||||
return deepmerge_1;
|
||||
|
||||
})));
|
70
app_vue/node_modules/deepmerge/index.js
generated
vendored
Normal file
70
app_vue/node_modules/deepmerge/index.js
generated
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
var isMergeableObject = require('is-mergeable-object')
|
||||
|
||||
function emptyTarget(val) {
|
||||
return Array.isArray(val) ? [] : {}
|
||||
}
|
||||
|
||||
function cloneIfNecessary(value, optionsArgument) {
|
||||
var clone = optionsArgument && optionsArgument.clone === true
|
||||
return (clone && isMergeableObject(value)) ? deepmerge(emptyTarget(value), value, optionsArgument) : value
|
||||
}
|
||||
|
||||
function defaultArrayMerge(target, source, optionsArgument) {
|
||||
var destination = target.slice()
|
||||
source.forEach(function(e, i) {
|
||||
if (typeof destination[i] === 'undefined') {
|
||||
destination[i] = cloneIfNecessary(e, optionsArgument)
|
||||
} else if (isMergeableObject(e)) {
|
||||
destination[i] = deepmerge(target[i], e, optionsArgument)
|
||||
} else if (target.indexOf(e) === -1) {
|
||||
destination.push(cloneIfNecessary(e, optionsArgument))
|
||||
}
|
||||
})
|
||||
return destination
|
||||
}
|
||||
|
||||
function mergeObject(target, source, optionsArgument) {
|
||||
var destination = {}
|
||||
if (isMergeableObject(target)) {
|
||||
Object.keys(target).forEach(function(key) {
|
||||
destination[key] = cloneIfNecessary(target[key], optionsArgument)
|
||||
})
|
||||
}
|
||||
Object.keys(source).forEach(function(key) {
|
||||
if (!isMergeableObject(source[key]) || !target[key]) {
|
||||
destination[key] = cloneIfNecessary(source[key], optionsArgument)
|
||||
} else {
|
||||
destination[key] = deepmerge(target[key], source[key], optionsArgument)
|
||||
}
|
||||
})
|
||||
return destination
|
||||
}
|
||||
|
||||
function deepmerge(target, source, optionsArgument) {
|
||||
var sourceIsArray = Array.isArray(source)
|
||||
var targetIsArray = Array.isArray(target)
|
||||
var options = optionsArgument || { arrayMerge: defaultArrayMerge }
|
||||
var sourceAndTargetTypesMatch = sourceIsArray === targetIsArray
|
||||
|
||||
if (!sourceAndTargetTypesMatch) {
|
||||
return cloneIfNecessary(source, optionsArgument)
|
||||
} else if (sourceIsArray) {
|
||||
var arrayMerge = options.arrayMerge || defaultArrayMerge
|
||||
return arrayMerge(target, source, optionsArgument)
|
||||
} else {
|
||||
return mergeObject(target, source, optionsArgument)
|
||||
}
|
||||
}
|
||||
|
||||
deepmerge.all = function deepmergeAll(array, optionsArgument) {
|
||||
if (!Array.isArray(array) || array.length < 2) {
|
||||
throw new Error('first argument should be an array with at least two elements')
|
||||
}
|
||||
|
||||
// we are sure there are at least 2 values, so it is safe to have no initial value
|
||||
return array.reduce(function(prev, next) {
|
||||
return deepmerge(prev, next, optionsArgument)
|
||||
})
|
||||
}
|
||||
|
||||
module.exports = deepmerge
|
21
app_vue/node_modules/deepmerge/license.txt
generated
vendored
Normal file
21
app_vue/node_modules/deepmerge/license.txt
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2012 Nicholas Fisher
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
38
app_vue/node_modules/deepmerge/package.json
generated
vendored
Normal file
38
app_vue/node_modules/deepmerge/package.json
generated
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
{
|
||||
"author": "Nick Fisher",
|
||||
"name": "deepmerge",
|
||||
"description": "A library for deep (recursive) merging of Javascript objects",
|
||||
"keywords": [
|
||||
"merge",
|
||||
"deep",
|
||||
"extend",
|
||||
"copy",
|
||||
"clone",
|
||||
"recursive"
|
||||
],
|
||||
"version": "1.5.2",
|
||||
"homepage": "https://github.com/KyleAMathews/deepmerge",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/KyleAMathews/deepmerge.git"
|
||||
},
|
||||
"main": "dist/umd.js",
|
||||
"module": "dist/es.js",
|
||||
"browser": "dist/cjs.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"test": "npm run build && tap test/*.js && jsmd README.markdown"
|
||||
},
|
||||
"devDependencies": {
|
||||
"is-mergeable-object": "1.1.0",
|
||||
"jsmd": "0.3.1",
|
||||
"rollup": "0.49.3",
|
||||
"rollup-plugin-commonjs": "8.2.1",
|
||||
"rollup-plugin-node-resolve": "3.0.0",
|
||||
"tap": "~7.1.2"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
18
app_vue/node_modules/deepmerge/rollup.config.js
generated
vendored
Normal file
18
app_vue/node_modules/deepmerge/rollup.config.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
import resolve from 'rollup-plugin-node-resolve'
|
||||
import commonjs from 'rollup-plugin-commonjs'
|
||||
|
||||
var pkg = require('./package.json')
|
||||
|
||||
export default {
|
||||
input: 'index.js',
|
||||
name: 'deepmerge',
|
||||
plugins: [
|
||||
commonjs(),
|
||||
resolve()
|
||||
],
|
||||
output: [
|
||||
{ file: pkg.main, format: 'umd' },
|
||||
{ file: pkg.module, format: 'es' },
|
||||
{ file: pkg.browser, format: 'cjs' },
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user