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

parley

Package Overview
Dependencies
Maintainers
2
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parley - npm Package Compare versions

Comparing version 3.3.3 to 3.3.4

2

package.json
{
"name": "parley",
"version": "3.3.3",
"version": "3.3.4",
"description": "Practical, lightweight flow control for Node.js. Supports `await`, callbacks and promises.",

@@ -5,0 +5,0 @@ "main": "lib/parley.js",

@@ -340,15 +340,15 @@ /**

bench('mock "await find()"', [
async function (next){
var result;
try {
result = await find({ where: {id:3, x:30} });
} catch (err) {
return next(err);
}
return next();
}
eval(
'(()=>{\n'+
' return async function (next){\n'+
' var result;\n'+
' try {\n'+
' result = await find({ where: {id:3, x:30} });\n'+
' } catch (err) {\n'+
' return next(err);\n'+
' }\n'+
' return next();\n'+
' }\n'+
'})()\n'
)
], done);

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