Skip to content

Instantly share code, notes, and snippets.

@theronic
Created June 16, 2021 10:22
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 theronic/0a2383efaa36ca9bde8961bb230f8143 to your computer and use it in GitHub Desktop.
Save theronic/0a2383efaa36ca9bde8961bb230f8143 to your computer and use it in GitHub Desktop.
(defn left-pad
"Left-pads inputs with prefix up to length n (just in case String.padStart stops working one day)."
[n prefix input]
(let [s (str input)]
(str (string/join "" (repeat (- n (.-length s)) prefix)) s)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment