0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-02 20:39:09 -05:00
penpot/frontend/uxbox/util/syntax.cljc

10 lines
192 B
Text
Raw Normal View History

(ns uxbox.util.syntax
(:refer-clojure :exclude [defonce]))
(defmacro define-once
[& body]
(let [sym (gensym "uxbox-")]
`(cljs.core/defonce ~sym
(do ~@body
nil))))