montagejs / collections

This package contains JavaScript implementations of common data structures with idiomatic interfaces.
http://www.collectionsjs.com
Other
2.09k stars 185 forks source link

SortedMap reversed() fails with exception #223

Open wittlesouth opened 5 years ago

wittlesouth commented 5 years ago

The following code:

const sm = new SortedMap()
// Fill SortedMap
const sm_desc = sm.reversed()

fails with "TypeError: this.constructClone(...).reverse is not a function", specifically on line 267 of generic-collection.js.GenericCollection.reversed. Per the docs, I was expecting it to return a copy with the items in reversed order of keys.