startinterval
v2.0.0
Published
setInterval that starts immediately
Readme
startInterval
Without startInterval:
setInterval(myFunction, 1000);
myFunction();With startInterval:
import startInterval from "startinterval";
startInterval(myFunction, 1000);This package was built for a tutorial.
