Skip to content

Instantly share code, notes, and snippets.

@konsumer
Created May 31, 2019 05:10
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 konsumer/900c9bb8e1d51bc991da9672909ea650 to your computer and use it in GitHub Desktop.
Save konsumer/900c9bb8e1d51bc991da9672909ea650 to your computer and use it in GitHub Desktop.
Modern leftpad
export const leftpad = (c, d=2, s='0') => c.toString().padStart(d, s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment