Skip to content

Releases: ApexCaptain/Koconut

New Version Release 1.0.167

17 Nov 02:08
Compare
Choose a tag to compare
New version released : 1.0.167

New Version Release 1.0.166

04 Jul 05:33
Compare
Choose a tag to compare
New version released : 1.0.166

New Version Release 1.0.165

22 Dec 07:16
Compare
Choose a tag to compare

Release v1.0.165

22 Dec 2021

Buf Fixes and Other Changes

  • You can use koconut in browser env with bower
    • To install, type
        bower install git@github.com:ApexCaptain/Koconut.git
    • Then, add src script to .html file
      <!DOCTYPE html>
      <html>
        <head>
          <meta charset="UTF-8" />
          <title>Your page title</title>
          <script src="bower_components/koconut/webpack/koconut.js"></script>
        </head>
        <body>
          ...
        </body>
        <script>
          KoconutArray.of(1, 2, 3, 4, 5)
            .onEach(alert)
            .process()
            .then(() => alert('Nailed it!'));
        </script>
      </html>

Repository

New Version Release 1.0.163

13 Dec 02:57
Compare
Choose a tag to compare

Release v1.0.163

13 Dec 2021

Buf Fixes and Other Changes

  • Fix misspelled words in descriptive comments.

Known Caveats

  • Fix misspelled methods.
    • Rename mapVaues to mapValues of KoconutMap.
    • Rename substract to subtract of [KoconutCollection].
    • Rename runningFoldindexed to runningFoldIndexed of KoconutCollection.

New Version Release 1.0.162

08 Dec 07:28
Compare
Choose a tag to compare

Bug Fixes and Other Changes

  • Fix some methods that did not print out intelliSence description of method example source.

Known Caveats

Repository