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

utilsac

Package Overview
Dependencies
Maintainers
1
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utilsac - npm Package Compare versions

Comparing version 15.0.1 to 15.0.2

4

package.json
{
"name": "utilsac",
"version": "15.0.1",
"version": "15.0.2",
"description": "Utility functions",

@@ -16,3 +16,3 @@ "license": "CC0-1.0",

"ava": "^3.15.0",
"eslint": "^7.32.0",
"eslint": "^8.4.1",
"eslint-config-red": "^1.8.2",

@@ -19,0 +19,0 @@ "leistung": "^5.0.1"

@@ -55,3 +55,3 @@ export {

const throttledWithLast = function (functionToThrottle, minimumTimeSpace = timeDefault, waitTime = timeDefault) {
const throttledWithLast = function (functionToThrottle, minimumTimeSpace = timeDefault) {
/* creates a function that is throttled,

@@ -79,3 +79,3 @@ calling it once will execute it immediately

functionToThrottle(...args);
}, waitTime - timeAlreadyWaited);
}, minimumTimeSpace - timeAlreadyWaited);
return;

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