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

rds-client

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rds-client - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

13

index.js

@@ -19,3 +19,7 @@ // Generated by CoffeeScript 1.10.0

r = JSON.parse(m.data);
rds[r.id] = r;
if (r.status === "deleted") {
delete rds[r.id];
} else {
rds[r.id] = r;
}
notify.ride(r);

@@ -39,2 +43,9 @@ if (r.me) {

return rds[id];
},
sort: function(By) {
return Object.keys(rds).map(function(r) {
return rds[r];
}).sort(function(a, b) {
return a[By] - b[By];
});
}

@@ -41,0 +52,0 @@ };

2

package.json
{
"name": "rds-client",
"version": "0.0.2",
"version": "0.0.3",
"description": "ride data store client lib",

@@ -5,0 +5,0 @@ "main": "index.js",

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