origamitower / folktale

[not actively maintained!] A standard library for functional programming in JavaScript
https://folktale.origamitower.com/
MIT License
2.04k stars 102 forks source link

Fixes union variants with non-constructable initialisers #196

Closed robotlolita closed 6 years ago

robotlolita commented 6 years ago

Previously we exposed the original initialiser as the constructor property. This caused problems with ES2015 additions, such as shorthand methods and arrow functions, which are not constructable.

Addresses #190