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

async-helpers

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-helpers - npm Package Compare versions

Comparing version 0.3.15 to 0.3.16

11

index.js

@@ -534,9 +534,6 @@ /*!

if (typeof helpers === 'function' || isObject(helpers)) {
var keys = Object.keys(helpers);
for (var i = 0; i < keys.length; i++) {
var name = keys[i];
if (name !== 'async' && name !== 'sync' && name !== 'displayName') {
return true;
}
}
var keys = Object.keys(helpers).filter(function(name) {
return ['async', 'sync', 'displayName'].indexOf(name) === -1;
});
return keys.length > 1;
}

@@ -543,0 +540,0 @@ return false;

{
"name": "async-helpers",
"description": "Use async helpers in templates with engines that typically only handle sync helpers. Handlebars and Lodash have been tested.",
"version": "0.3.15",
"version": "0.3.16",
"homepage": "https://github.com/doowb/async-helpers",

@@ -6,0 +6,0 @@ "author": "Brian Woodward (https://github.com/doowb)",

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