Skip to content

Instantly share code, notes, and snippets.

@whamtet
Created April 25, 2024 05:08
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 whamtet/1f9b4cfb6dc2754fa3b42bbd697c18e2 to your computer and use it in GitHub Desktop.
Save whamtet/1f9b4cfb6dc2754fa3b42bbd697c18e2 to your computer and use it in GitHub Desktop.
(defmacro format-js [s]
`(-> ~s
~@(for [[to-replace replacement] (re-seq #"\{([^\}]+)}" s)]
`(string/replace-first ~to-replace ~(read-string replacement)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment