mirror of
https://github.com/penpot/penpot.git
synced 2026-04-25 19:28:12 +00:00
Replace (empty? items) + (rest items) with (seq items) + (next items) in enumerate. The seq/next pattern is idiomatic Clojure and avoids the overhead of empty? which internally calls seq and then negates.