periodically
Advanced tools
Comparing version 1.0.0 to 1.0.1
22
index.js
@@ -6,4 +6,4 @@ /** | ||
*/ | ||
export default (func, frequencyInMs) => { | ||
let running = false; | ||
module.exports = (func, frequencyInMs) => { | ||
let running = false | ||
@@ -17,7 +17,7 @@ /** | ||
if (running) { | ||
setTimeout(tick, frequencyInMs); | ||
setTimeout(tick, frequencyInMs) | ||
} | ||
return null; | ||
}); | ||
return null | ||
}) | ||
} | ||
@@ -30,8 +30,8 @@ | ||
if (!running) { | ||
running = true; | ||
running = true | ||
tick(); | ||
tick() | ||
} | ||
return null; | ||
return null | ||
} | ||
@@ -43,6 +43,6 @@ | ||
function stop() { | ||
running = false; | ||
running = false | ||
} | ||
return { start, stop }; | ||
}; | ||
return { start, stop } | ||
} |
{ | ||
"name": "periodically", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A wrapper for doing things periodically", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
1765
4