Releases: monet/monet.js
Releases · monet/monet.js
MonetJS 0.9.0 Alpha 2
25 Oct 12:29
Compare
Sorry, something went wrong.
No results found
[fix] fix List's .size() ( #79 )
[fix] fix List's .map ( #64 )
ALPHA
API of alpha version is unstable - it may change a lot!
MonetJS 0.9.0 Alpha 1
24 Oct 21:13
Compare
Sorry, something went wrong.
No results found
ALPHA
API of alpha version is unstable - it may change a lot!
MonetJS 0.9.0 Alpha 0
24 Oct 10:08
Compare
Sorry, something went wrong.
No results found
[new] .equals() method added to most entities
[breaking] all native prototype extentions extracted to monet-pimp.js
[enhancement] typings compatible with TS2.x
[fix] updated module pattern
ALPHA
API of alpha version is unstable - it may change a lot!
Few fixes
25 Apr 07:09
Compare
Sorry, something went wrong.
No results found
[fix] Fixed bower.json issues ( #51 )
[fix] Fixed internal curry implementation ( #55 )
Typings and fixes
19 Apr 06:03
Compare
Sorry, something went wrong.
No results found
[new] add TypeScript typings
[new] add .ap() to List, Free and NonEmptyList -- thanks to @WojciechP ( #44 )
[new] add "use strict"; -- thanks to @krjackso ( #41 )
Typings
TypeScript typings added to repository, so now anyone can:
import { Maybe } from 'monet' ;
export function getStoredData ( key : string ) : Maybe < SomeData > {
return Maybe . fromNull ( localStorage )
. flatMap ( ls => Maybe . fromNull ( ls . getItem ( key ) ) )
. map ( JSON . parse ) ;
}
Bug fixes
27 Jan 21:37
Compare
Sorry, something went wrong.
No results found
Added cata to Maybe -- thanks to Crisson Jno-Charles @crisson
Reader and IO .of() fixed
19 Apr 08:11
Compare
Sorry, something went wrong.
No results found
Thanks to @raine and @joneshf for pointed out the folly of the implementation for .of() for Reader (and IO).
This means lazySequence is no longer needed and has been removed.
reduceLeft for NonEmptyLists
15 Dec 23:33
Compare
Sorry, something went wrong.
No results found
foldRight implemented for NonEmptyList
15 Dec 05:50
Compare
Sorry, something went wrong.
No results found
Bug fix
11 Dec 05:51
Compare
Sorry, something went wrong.
No results found
Fix from @crisson for converting from Either to Validation and Maybe.