diff --git a/src/uxbox/util/interop.cljs b/src/uxbox/util/interop.cljs new file mode 100644 index 000000000..ee6e7a2a5 --- /dev/null +++ b/src/uxbox/util/interop.cljs @@ -0,0 +1,13 @@ +;; This Source Code Form is subject to the terms of the Mozilla Public +;; License, v. 2.0. If a copy of the MPL was not distributed with this +;; file, You can obtain one at http://mozilla.org/MPL/2.0/. +;; +;; Copyright (c) 2016 Andrey Antukh + +(ns uxbox.util.interop + "Interop helpers.") + +(defn iterable->seq + "Convert an es6 iterable into cljs Seq." + [v] + (seq (js/Array.from v)))