Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 346 Bytes

CHANGELOG.md

File metadata and controls

18 lines (12 loc) · 346 Bytes

Changelog

v2.0.0

  • Removed context chaining and changed some return values to more closely match the specification

    // v1
    list.add('foo').remove('bar')
    
    // v2
    list.add('foo')
    list.remove('bar')
  • Added item and replace methods