Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADD] Bltzz solution incl. Unit tests and style checks #250

Open
wants to merge 15 commits into
base: master
Choose a base branch
from

Commits on Feb 13, 2024

  1. [ADD] basic functions

    - identity
    - addb
    - subb
    - mulb
    
    [ADD] tests + advanced testing for type errors
    Bltzz committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    b7d85f7 View commit details
    Browse the repository at this point in the history
  2. [ADD] multiple functions + positive and negative tests

    - mulb,
    - minb,
    - maxb,
    - add,
    - sub,
    - mul,
    - min,
    - max,
    - addRecurse,
    - mulRecurse,
    - minRecurse,
    - maxRecurse,
    - not,
    - acc,
    - accPartial,
    - accRecurse
    Bltzz committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    da0ef9d View commit details
    Browse the repository at this point in the history
  3. [EDIT] packages

    update sinon-chai dependency + version
    Bltzz committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    c0b87c7 View commit details
    Browse the repository at this point in the history
  4. [ADD] fill function

    Bltzz committed Feb 13, 2024
    Configuration menu
    Copy the full SHA
    f7035f5 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. [ADD] seven more functions (see descr)

    - [ADD] func + test for: fill,
    - [ADD] func + test for: fillRecurse,
    - [ADD] func + test for: set,
    - [ADD] func + test for: identityf,
    - [ADD] func + test for: addf,
    - [ADD] func + test for: liftf,
    - [ADD] func + test for: pure
    Bltzz committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    ce02d07 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. [ADD] new functionality (see description)

    - [ADD] func + test for: curryb,
    - [ADD] func + test for: curry,
    - [ADD] func + test for: inc,
    - [ADD] func + test for: twiceUnary,
    - [ADD] func + test for: doubl
    Bltzz committed Feb 16, 2024
    Configuration menu
    Copy the full SHA
    80b705e View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2024

  1. - [ADD] functions - see description

    - [ADD] func + test for: square,
    - [ADD] func + test for: twice,
    - [ADD] func + test for: reverseb,
    - [ADD] func + test for: reverse,
    - [ADD] func + test for: composeuTwo,
    - [ADD] func + test for: composeu,
    - [ADD] func + test for: composeb
    Bltzz committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    babdf80 View commit details
    Browse the repository at this point in the history
  2. [ADD] Lint for my code

    include eslint with airbnb code style to my js
    
    - [STYLE] The current state of the code
    Bltzz committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    d163a2a View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. [ADD] addtl functionality

    - [ADD] func + test for: composeTwo,
    - [ADD] func + test for: compose,
    - [ADD] func + test for: limitb,
    - [ADD] func + test for: limit,
    - [ADD] func + test for: genFrom,
    - [ADD] func + test for: genTo,
    - [ADD] func + test for: genFromTo,
    - [ADD] func + test for: elementGen,
    - [ADD] func + test for: element,
    - [ADD] func + test for: collect,
    Bltzz committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    b734fa2 View commit details
    Browse the repository at this point in the history
  2. [ADD] more functions

    - [ADD] func + test for: filter,
    - [ADD] func + test for: filterTail,
    - [ADD] func + test for: concatTwo,
    - [ADD] func + test for: concat,
    Bltzz committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    858d68f View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2024

  1. [ADD] more functionality

    - [ADD] func + test for: concatTail,
    - [ADD] func + test for: gensymf,
    - [ADD] func + test for: gensymff,
    - [ADD] func + test for: fibonaccif,
    - [ADD] func + test for: counter,
    - [ADD] func + test for: revocableb,
    - [ADD] func + test for: revocable,
    - [ADD] func + test for: extract,
    - [ADD] func + test for: m,
    - [ADD] func + test for: addmTwo,
    - [ADD] func + test for: addm,
    - [ADD] func + test for: liftmbM,
    - [ADD] func + test for: liftmb,
    - [ADD] func + test for: liftm,
    - [ADD] func + test for: exp,
    - [ADD] func + test for: expn
    Bltzz committed Feb 25, 2024
    Configuration menu
    Copy the full SHA
    1dbb884 View commit details
    Browse the repository at this point in the history
  2. [FIX] lint

    Bltzz committed Feb 25, 2024
    Configuration menu
    Copy the full SHA
    dfad601 View commit details
    Browse the repository at this point in the history
  3. [ADD] final functions + [FIX] lint for private functions

    - [ADD] func + test for: addg,
    - [ADD] func + test for: liftg,
    - [ADD] func + test for: arrayg,
    - [ADD] func + test for: continuizeu,
    - [ADD] func + test for: continuize,
    - [ADD] func + test for: vector,
    - [ADD] func + test for: exploitVector,
    - [ADD] func + test for: vectorSafe,
    - [ADD] func + test for: pubsub,
    - [ADD] func + test for: mapRecurse,
    - [ADD] func + test for: filterRecurse,
    - [FIX] Lint error on # sign by adding parserOption `ecmaVersion: 13`
    Bltzz committed Feb 25, 2024
    Configuration menu
    Copy the full SHA
    262d625 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b799b71 View commit details
    Browse the repository at this point in the history
  5. [RM] sinon-chai dependency

    Bltzz committed Feb 25, 2024
    Configuration menu
    Copy the full SHA
    813905e View commit details
    Browse the repository at this point in the history