Skip to content

Releases: yelouafi/adtstream

v0.1.0

03 Jun 17:57
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release
  • fixed bug in DOM default property handler (wrong call #toString on passed values)
  • fixed bug in #toArray() and #window() (use […acc, x] instead of [].concat to accumulate results)
  • renamed #combine() to #combineWith() for consistency
  • #combine() now yields an array of results ( [Stream a] -> Stream [a])
  • added method #zipWith() (refactor #zip() to use #zipWith())
  • added method Stream.zip(…args)
  • added method #reduceRight()

0.0.4

26 May 12:32
Compare
Choose a tag to compare
0.0.4 Pre-release
Pre-release
  • Added new methods combine, window, and changes
  • New browser helper adts.$$() to express DOM updates declaratively
  • Allow for registring virtual properties to encapsulate complex updates
  • renamed Stream.fromDomTarget to Stream.fromDomEvent for consistency with the initial blog post
  • Added factory method Stream.seconds(max)