Skip to content

Releases: KoichiKiyokawa/rhodash

v2.2.0

07 Aug 11:25
Compare
Choose a tag to compare

What's Changed

Document

Feature

  • Add groupBy method in #166

Full Changelog: v2.1.0...v2.2.0

v2.1.0

27 Feb 01:56
Compare
Choose a tag to compare

Feature

  • Add cloneDeep method

Full Changelog: v2.0.0...v2.1.0

v2.0.0

21 Feb 02:09
Compare
Choose a tag to compare

range, toRange

Fix

  • Throw an error when passed unexpected arguments to avoid an infinite loop.

Breaking

  • Throw an error when passed 0 to step arugument, because the previous result is not intuitive, and there is rare case to explicitly set step to 0.
// before v2.0.0
range(0, 5, 0) // returns [0, 0, 0, 0], to match lodash's `range`
toRange(0, 5, 0) // returns [0, 0, 0, 0, 0]
// after
range(0, 5, 0) // throws an error
toRange(0, 5, 0) // throws an error

v1.6.0

01 Feb 05:52
Compare
Choose a tag to compare

feat: enable TypeScript declarationMap

Now, you can jump to the TS file.

v1.5.1

10 Jan 06:24
Compare
Choose a tag to compare

fix: objectSet type

v1.5.0

10 Jan 06:08
Compare
Choose a tag to compare

feat: add objectSet method

v1.4.0

01 Oct 05:43
Compare
Choose a tag to compare
  • feat: add pickBy method

v1.3.4

13 Jul 12:38
Compare
Choose a tag to compare
  • (fix) enable to pass 0 as step
  • (fix) enable to generate decreasing range