Skip to content

Instantly share code, notes, and snippets.

@theneosloth
Last active February 24, 2021 23:23
Show Gist options
  • Save theneosloth/3be789dcfec29866f18e1fccfa0885c5 to your computer and use it in GitHub Desktop.
Save theneosloth/3be789dcfec29866f18e1fccfa0885c5 to your computer and use it in GitHub Desktop.
Dot Cycler
const dotCycler = (maxDots) => {
let dotCount = -1;
return () => {
dotCount = (dotCount + 1) % (maxDots + 1);
return '.'.repeat(dotCount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment