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

ps-direct-sdk

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ps-direct-sdk - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

5

lib/hydrateString.js

@@ -64,2 +64,7 @@ "use strict";

return hydrateString(db, local, x.join(""));
})
.consume((err, hydratedString, push) => {
if(err && err.type === "DefaultAsKeyNotFound") push(null, err.message);
else if(err) push(err);
else push(null, hydratedString);
});

@@ -66,0 +71,0 @@ });

2

package.json
{
"name": "ps-direct-sdk",
"version": "3.0.0",
"version": "3.0.1",
"description": "Directly ",

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

@@ -86,5 +86,4 @@ "use strict";

.flatMap(hydrateKey({}, '${key;null}'))
.pull((err, res) => {
assert.equal(err.type, "DefaultAsKeyNotFound");
assert.equal(err.message, "null");
.pull((err, value) => {
assert.equal(value, "null");
done();

@@ -91,0 +90,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