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

node-ral

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ral - npm Package Compare versions

Comparing version 0.8.2 to 0.9.0

lib/ext/converter/protobufConverter.js

4

lib/config.js

@@ -242,5 +242,5 @@ /**

context.packConverter = RalModule.modules.converter[options.pack || serviceInfo.pack];
context.pack = context.packConverter.pack;
context.pack = context.packConverter.pack.bind(context.packConverter);
context.unpackConverter = RalModule.modules.converter[options.unpack || serviceInfo.unpack];
context.unpack = context.unpackConverter.unpack;
context.unpack = context.unpackConverter.unpack.bind(context.unpackConverter);
return context;

@@ -247,0 +247,0 @@ }

@@ -360,2 +360,3 @@ /**

return setImmediate(function () {
logger.warning('service degraded since request failed: ' + err.message);
me.emit('data', val);

@@ -362,0 +363,0 @@ me.emit('end');

{
"name": "node-ral",
"version": "0.8.2",
"version": "0.9.0",
"description": "a rpc client for node",

@@ -34,2 +34,3 @@ "main": "index.js",

"performance-now": "0.2.0",
"protobufjs": "5.0.1",
"soap": "0.8.0",

@@ -36,0 +37,0 @@ "underscore": "1.6.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