Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webpack-merge

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-merge - npm Package Compare versions

Comparing version 5.1.2 to 5.1.3

4

CHANGELOG.md
# Changelog
## 5.1.3 / 2020-08-30
- Fix - Allow merging a `RegExp` to itself #145
## 5.1.2 / 2020-08-18

@@ -4,0 +8,0 @@

@@ -46,2 +46,5 @@ "use strict";

}
if (isRegex(b)) {
return b;
}
if (isPlainObject(a) && isPlainObject(b)) {

@@ -66,2 +69,5 @@ var customResult = customizeObject && customizeObject(a, b, newKey);

exports["default"] = joinArrays;
function isRegex(o) {
return o instanceof RegExp;
}
// https://stackoverflow.com/a/7356528/228885

@@ -68,0 +74,0 @@ function isFunction(functionToCheck) {

2

package.json

@@ -5,3 +5,3 @@ {

"author": "Juho Vepsalainen <bebraw@gmail.com>",
"version": "5.1.2",
"version": "5.1.3",
"scripts": {

@@ -8,0 +8,0 @@ "build": "tsc",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc