From 4b0c8cec070b14d0a91d2ad8357d3702b9ae8633 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 24 May 2016 19:04:14 +0300 Subject: [PATCH] Add interop ns for tricky js interop calls. --- src/uxbox/util/interop.cljs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/uxbox/util/interop.cljs 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)))