Skip to content

4.2.0

Compare
Choose a tag to compare
@mikemitchel mikemitchel released this 31 Oct 16:18
· 21 commits to master since this release

Restore sort method to can-list:

  var myList = new List([
    "Marshall",
    "Austin",
    "Hyrum"
  ]);

  myList.sort();

// => ["Austin", "Hyrum", "Marshall"]