diff options
| author | Andrey Orst <andreyorst@gmail.com> | 2020-11-15 19:27:07 +0300 |
|---|---|---|
| committer | Andrey Orst <andreyorst@gmail.com> | 2020-11-15 19:27:07 +0300 |
| commit | 98e824f59fbddac056afac108ee5b5fc2c7b8963 (patch) | |
| tree | 1cb0fdea1ea058259a4eb5e1e91fae27484461bc /cljlib.fnl | |
| parent | aec65aee793ece4416d7f5f50fc3a326deba8917 (diff) | |
fix(core): fix seq function not handling tables with number keys
Diffstat (limited to 'cljlib.fnl')
| -rw-r--r-- | cljlib.fnl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -273,7 +273,7 @@ Additionally you can use [`conj`](#conj) and [`apply`](#apply) with (let [assoc-res (empty [])] (each [k v (pairs col)] (if (and (not assoc?) - (not (= (type k) :number))) + (map? col)) (set assoc? true)) (insert res v) (insert assoc-res [k v])) |