Skip to content

Releases: blutorange/js-kagura

Version 1.2.0

16 Apr 11:03
Compare
Choose a tag to compare

1.2.0

  • Added sort wrappers, see above.
  • Fixed some typings regarding undefined. Some methods can handle undefined by setting the type parameter to T|undefined on the calling side.

1.1.0

  • Updated all methods to handle undefined values. See above
    for details.
  • Extracted common interfaces and types (Comparator, Predicate etc.) to
    their own package. This affects you only if
    you are using typescript and are referring to these types explicitly; in this case
    please import them from the package andross instead from this package kagura, see
    below.
// If using typescript, change this
import { Comparable, Comparator, Equator, KeyExtractor, Predicate } from "kagura";
// to
import { Comparable, Comparator, Equator, KeyExtractor, Predicate } from "andross";