node-deep-extend icon indicating copy to clipboard operation
node-deep-extend copied to clipboard

Recursive extend module

Results 12 node-deep-extend issues
Sort by recently updated
recently updated
newest added

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`. ![screen shot 2018-06-20 at 9 49 45 am](https://user-images.githubusercontent.com/4776422/41662500-4ccca410-746f-11e8-8edf-9c4a64c47788.jpg) I know I can...

bug

When extending an object into a second, the `Map` values of the first don't get copied.

enhancement

The title does include _Node_, but I was wondering if this is safe to use in the browser?

enhancement

When I try ``` js function BearerStrategy() { } BearerStrategy.prototype.authenticate = function () { }; const extended = deepExtend({}, { strategies: [ new BearerStrategy(), ] }); extended.strategies.forEach((s) => { console.log('extended',...

enhancement

Added ability to use this lib in browser.

enhancement