Skip to content

Instantly share code, notes, and snippets.

@colabottles
Created July 27, 2020 12:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colabottles/a6e33576fbadd471eaf7b5ff9a1321fb to your computer and use it in GitHub Desktop.
Save colabottles/a6e33576fbadd471eaf7b5ff9a1321fb to your computer and use it in GitHub Desktop.
A sample file with some JS as an example for a11y on Twitter
function leadingZero(time) {
if (time <= 9) {
time = "0" + time;
}
return time;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment