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

can-map

Package Overview
Dependencies
Maintainers
13
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

can-map - npm Package Compare versions

Comparing version 4.3.4 to 4.3.5

9

can-map.js

@@ -45,2 +45,3 @@ "use strict";

var hasOwnProperty = ({}).hasOwnProperty;
var inSetupSymbol = canSymbol.for("can.initializing");

@@ -322,3 +323,3 @@ // Extend [can.Construct](../construct/construct.html) to make inheriting a `can.Map` easier.

current = this.__inSetup ? undefined : this.___get( first );
current = this[inSetupSymbol] ? undefined : this.___get( first );

@@ -328,3 +329,3 @@ if( canReflect.isMapLike(current) ) {

} else {
current = this.__inSetup ? undefined : this.___get( attr );
current = this[inSetupSymbol] ? undefined : this.___get( attr );

@@ -340,3 +341,3 @@ // //Convert if there is a converter. Remove in 3.0.

} else {
current = this.__inSetup ? undefined : this.___get( attr );
current = this[inSetupSymbol] ? undefined : this.___get( attr );

@@ -729,3 +730,3 @@ // //Convert if there is a converter. Remove in 3.0.

"can.getOwnEnumerableKeys": function(){
if (!this.__inSetup) {
if (!this[inSetupSymbol]) {
ObservationRecorder.add(this, '__keys');

@@ -732,0 +733,0 @@ }

{
"name": "can-map",
"version": "4.3.4",
"version": "4.3.5",
"description": "Observable Objects",

@@ -39,3 +39,3 @@ "homepage": "http://canjs.com",

"can-compute": "^4.0.0",
"can-construct": "^3.2.1",
"can-construct": "^3.5.4",
"can-event-queue": "<2.0.0",

@@ -62,3 +62,3 @@ "can-log": "^1.0.0",

"steal-tools": "^2.0.4",
"testee": "^0.8.0"
"testee": "^0.9.0"
},

@@ -65,0 +65,0 @@ "repository": {

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