mirror of
https://github.com/penpot/penpot.git
synced 2025-02-02 20:39:09 -05:00
10 lines
192 B
Text
10 lines
192 B
Text
|
(ns uxbox.util.syntax
|
||
|
(:refer-clojure :exclude [defonce]))
|
||
|
|
||
|
(defmacro define-once
|
||
|
[& body]
|
||
|
(let [sym (gensym "uxbox-")]
|
||
|
`(cljs.core/defonce ~sym
|
||
|
(do ~@body
|
||
|
nil))))
|