Created
April 25, 2024 05:08
-
-
Save whamtet/1f9b4cfb6dc2754fa3b42bbd697c18e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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