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

yodata-client-js

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yodata-client-js - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

2

package.json

@@ -19,3 +19,3 @@ {

},
"version": "0.0.9",
"version": "0.0.10",
"main": "yodata.client.js",

@@ -22,0 +22,0 @@ "private": false,

@@ -55,3 +55,7 @@ (function() {

callback(err, typeof body === 'object' ? body : JSON.parse(body));
if (err) {
callback(err, null);
} else {
callback(null, typeof body === 'object' ? body : JSON.parse(body));
}
});

@@ -106,3 +110,7 @@

callback(err, JSON.parse(body));
if (err) {
callback(err, null);
} else {
callback(null, typeof body === 'object' ? body : JSON.parse(body));
}
});

@@ -109,0 +117,0 @@ }

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