DrBoolean / freeky

Free monad Collection
MIT License
176 stars 15 forks source link

fix for in for babel 5 #1

Closed paparga closed 8 years ago

paparga commented 8 years ago

I change this line:

for(x in xs)

to

for(let x in xs)

For running with babel-node example.js instead of node --harmony_destructuring example.js

DrBoolean commented 8 years ago

Thanks!