Lazy.js v0.3.0 Release Notes

Release Date: 2013-12-20 // over 10 years ago
    • now these methods on AsyncSequence return a promise-like AsyncHandle, allowing you to do something w/ the result once iteration is complete (using onComplete, which is aliased as then):
      • reduce
      • min
      • max
      • sum
      • find
      • indexOf
      • contains
      • toArray
      • toObject
      • join/toString
    • โž• added Lazy(object).watch to monitor changes to a property as a sequence (see #49)
    • โž• added Sequence#chunk, Sequence#tap, and Sequence#ofType
    • ๐Ÿ—„ deprecated Lazy.events in favor of NodeSequence#on (note: I should probably rename NodeSequence to DOMSequence)