Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created May 7, 2018 06:34
Show Gist options
  • Save andreasvirkus/aa77d80b8d0de9e0c57bc97469253a68 to your computer and use it in GitHub Desktop.
Save andreasvirkus/aa77d80b8d0de9e0c57bc97469253a68 to your computer and use it in GitHub Desktop.
Pad a number with leading zeros
export default (value) => {
return ('00' + value).slice(String(value).length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment