New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ck-array

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ck-array - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

2

package.json
{
"name": "ck-array",
"version": "0.1.1",
"version": "0.1.2",
"description": "A simple observable array for JavaScript Frameworks",

@@ -5,0 +5,0 @@ "main": "src/ckArray.js",

@@ -24,3 +24,3 @@ // Generated by CoffeeScript 1.9.1

var ref;
return (ref = observer.prePush) != null ? ref.apply(null, args) : void 0;
return (ref = observer.prePush) != null ? ref.apply(this, args) : void 0;
});

@@ -30,3 +30,3 @@ result = Array.prototype.push.call(this, args);

var ref;
return (ref = observer.postPush) != null ? ref.apply(null, args) : void 0;
return (ref = observer.postPush) != null ? ref.apply(this, args) : void 0;
});

@@ -40,3 +40,3 @@ return result;

var ref;
return (ref = observer.preSplice) != null ? ref.apply(null, args) : void 0;
return (ref = observer.preSplice) != null ? ref.apply(this, args) : void 0;
});

@@ -46,3 +46,3 @@ result = Array.prototype.splice.apply(this, args);

var ref;
return (ref = observer.postSplice) != null ? ref.call(null, result) : void 0;
return (ref = observer.postSplice) != null ? ref.call(this, result) : void 0;
});

@@ -56,3 +56,3 @@ return result;

var ref;
return (ref = observer.preSlice) != null ? ref.apply(null, args) : void 0;
return (ref = observer.preSlice) != null ? ref.apply(this, args) : void 0;
});

@@ -62,3 +62,3 @@ result = Array.prototype.slice.apply(this, args);

var ref;
return (ref = observer.postSlice) != null ? ref.call(null, result) : void 0;
return (ref = observer.postSlice) != null ? ref.call(this, result) : void 0;
});

@@ -65,0 +65,0 @@ return result;

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