go-funk v0.7.0 Release Notes

Release Date: 2020-06-23 // almost 4 years ago
    • ➕ Add Join which combines two collections using the given join method (thks @xunleii)
    • ➕ Add Without which creates an array excluding all given values (thks @xunleii)
    • ➕ Add Subset which returns true if a collection is a subset of another (thks @reetuparna)
    • ➕ Add Join operations, primitives (InnerJoin, OuterJoin, LeftJoin, RightJoin) and typesafe implementations (thks @xunleii)
    • 🛠 Fixed input mutation in Uniq, it returns a copy of the input without the duplicate
    • 🛠 Fixed some typos (thks @anukul)
    • 🛠 Fixed SubtractString when an empty array is passed (thks @alongat)

Previous changes from v0.6.0

    • ➕ Add Intersect returns the intersection between two collections (thks @samber)
    • ➕ Add Difference returns the difference between two collections (thks @samber)
    • ➕ Add GetOrElse retrieves the value of the point or default (thks @samber)
    • ➕ Add Subtract the subtraction between two collections. It preserves order (thks @airani)
    • 🛠 Fix bug in lastIndexOf (thks @kkty)