Socket
Socket
Sign inDemoInstall

message-box

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

message-box - npm Package Compare versions

Comparing version 0.2.4 to 0.2.5

4

CHANGELOG.md
# MessageBox Changelog
## 0.2.5
Fix to message merging
## 0.2.4

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

5

dist/merge.js

@@ -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>",

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