Skip to content

Instantly share code, notes, and snippets.

@pgaertig
Created April 2, 2015 21:09
Show Gist options
  • Save pgaertig/fdc768447c044429a34a to your computer and use it in GitHub Desktop.
Save pgaertig/fdc768447c044429a34a to your computer and use it in GitHub Desktop.
Time format conversion in ClojureScript with MomentJS
(enable-console-print!)
(defn moment [arg] (.moment js/window arg))
(defn json-date-short [str]
(if str
(-> (moment str)
(.format "MM-DD HH:mm"))
"-")
)
(println (json-date-short "2015-03-01T15:36:34Z") )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment