It came to my attention that I haven't uploaded builds to itch.io for a while, so here you go. Most importantly this gets the library to be compatible with Haxe...
Optional argument initialization now prefers ternary operator if available, e.g. function some(a = 1) would use var a = argument_count > 0 ? argument[0] : 1; (e...
Compiler - Fixed Haxe standard library overrides not binding sometimes (particularly if just adding the libraries as classpaths instead of actual haxelibs). - A...