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

@memberjunction/core

Package Overview
Dependencies
Maintainers
3
Versions
223
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@memberjunction/core - npm Package Compare versions

Comparing version 0.9.28 to 0.9.29

15

dist/generic/baseEntity.js

@@ -50,4 +50,15 @@ "use strict";

return false; // BOTH are null or undefined, not dirty
else
return this._OldValue !== this.Value;
else {
let oldCompare = this._OldValue;
let newCompare = this.Value;
if (this._OldValue instanceof Date) {
// sometimes we have old values that are date objects, convert to UTC timestamp for comparison
oldCompare = this._OldValue.getTime();
}
if (this.Value instanceof Date) {
// and sometimes the new values are date objects, convert to UTC timestamp for comparison
newCompare = this.Value.getTime();
}
return oldCompare !== newCompare;
}
}

@@ -54,0 +65,0 @@ }

4

package.json
{
"name": "@memberjunction/core",
"version": "0.9.28",
"version": "0.9.29",
"description": "MemberJunction: Core Library including Metadata, Application, Entity Retrieval and Manipulation, and Utilities",

@@ -22,4 +22,4 @@ "main": "dist/index.js",

"dependencies": {
"@memberjunction/global": "^0.9.27"
"@memberjunction/global": "^0.9.28"
}
}

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