Comparing version 15.0.1 to 15.0.2
{ | ||
"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 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39069