Skip to content

Instantly share code, notes, and snippets.

@such
Created November 20, 2020 16:35
Show Gist options
  • Save such/e783b9c893cdd0719418e15dd3cc945b to your computer and use it in GitHub Desktop.
Save such/e783b9c893cdd0719418e15dd3cc945b to your computer and use it in GitHub Desktop.
Moment.pooledTimer = setInterval(() => {
Moment.pooledElements.forEach((element) => {
if (element.props.interval !== 0) {
element.update();
}
});
}, interval);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment