1
1
mirror of https://github.com/kanaka/mal.git synced 2024-11-13 11:23:59 +03:00
mal/livescript/utils.ls

7 lines
149 B
Plaintext
Raw Normal View History

2017-05-10 18:57:31 +03:00
{map} = require 'prelude-ls'
export list-to-pairs = (list) ->
[0 to (list.length - 2) by 2] \
|> map (idx) -> [list[idx], list[idx+1]]