Socket
Socket
Sign inDemoInstall

debounce-promise

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

debounce-promise - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

2

package.json
{
"name": "debounce-promise",
"version": "3.0.1",
"version": "3.0.2",
"description": "Create a debounced version of a promise returning function",

@@ -5,0 +5,0 @@ "main": "dist/index",

@@ -68,4 +68,4 @@ # debounce-promise

function squareValues (values) {
return Promise.all(values.map(val => val * val))
function squareValues (argTuples) {
return Promise.all(argTuples.map(args => args[0] * args[0]))
}

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