message-box
Advanced tools
Comparing version 0.2.4 to 0.2.5
# MessageBox Changelog | ||
## 0.2.5 | ||
Fix to message merging | ||
## 0.2.4 | ||
@@ -4,0 +8,0 @@ |
@@ -21,3 +21,6 @@ "use strict"; | ||
if (source[prop] && source[prop].constructor && source[prop].constructor === Object) { | ||
destination[prop] = destination[prop] || {}; | ||
if (!destination[prop] || !destination[prop].constructor || destination[prop].constructor !== Object) { | ||
destination[prop] = {}; | ||
} | ||
merge(destination[prop], source[prop]); | ||
@@ -24,0 +27,0 @@ } else { |
{ | ||
"name": "message-box", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"description": "A package for defining and getting validation error messages, with support for Meteor Tracker reactivity", | ||
@@ -5,0 +5,0 @@ "author": "Eric Dobbertin <aldeed@gmail.com>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15083
152