Skip to content
This repository has been archived by the owner on Nov 11, 2023. It is now read-only.

Releases: pilotgeraldb/enumerablejs

upgraded build to use parcel

20 Nov 06:48
Compare
Choose a tag to compare
  • Minor refactors
  • Upgrade build process to parcel
  • Cleaned up unused npm packages

v1.2.0...v1.3.0

Added support for strings

25 Apr 23:39
bd3f649
Compare
Choose a tag to compare

Since a string is an array of characters, it was helpful to provide the asEnumerable() extension method for strings as well. This method creates an enumerable object containing each character which can then be used with any of the fluent functions. Calling toString() on the enumerable converts it back to a string.

Hotfix - Except, Shuffle, DropLast, DropFirst

13 Apr 22:44
9881bf0
Compare
Choose a tag to compare

hotfix for issues with except, shuffle, droplast, and drop first

except, drop, shuffle

07 Apr 04:16
b30c416
Compare
Choose a tag to compare

added new extension methods

  • except
  • dropFirst
  • dropLast
  • shuffle

added Enumerable.Range and bug fixes in select method

28 Mar 01:43
ecb1b60
Compare
Choose a tag to compare

Added support for Enumerable.Range

Fixed issues with select method not returning the correct type of result in certain scenarios. See documentation for details.

code clean up and various bug fixes

03 Dec 01:38
a8ce657
Compare
Choose a tag to compare
Feature/code cleanup (#16)

* code cleanup

* fixed takeWhile to return correct results

* fixed skipWhile to return correct results

* fixed skip to return the proper results

* increased test coverage

* Update package.json