node-deep-extend
node-deep-extend copied to clipboard
Recursive extend module
Hey there! I belong to an open source security research community, and a member (@ranjit-git) has found an issue, but doesn’t know the best way to disclose it. If not...
when I ran the following code, I was surprised by the result ``` javascript const target = {} deepExtend( target, { series: [{ center: [1, 2], other: 1, dif: 2...
Added power support for the travis.yml file with ppc64le. This is part of the Ubuntu distribution for ppc64le. This helps us simplify testing later when distributions are re-building and re-releasing.
The license information in [package.json](https://github.com/unclechu/node-deep-extend/blob/master/package.json) is deprecated / misleading. According to the [package.json specification](https://docs.npmjs.com/files/package.json#license), an SPDX license expression 2.0 compliant license string should be provided under field `license` in a...
When trying to use this library with react-native it throws the following error saying `Buffer is not defined`.  I know I can...
When extending an object into a second, the `Map` values of the first don't get copied.
Browser?
The title does include _Node_, but I was wondering if this is safe to use in the browser?
When I try ``` js function BearerStrategy() { } BearerStrategy.prototype.authenticate = function () { }; const extended = deepExtend({}, { strategies: [ new BearerStrategy(), ] }); extended.strategies.forEach((s) => { console.log('extended',...