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 JavaScript solution to Bank OCR Kata #1

Open
wants to merge 25 commits into
base: main
Choose a base branch
from

Commits on Jul 28, 2020

  1. Configuration menu
    Copy the full SHA
    94d8f44 View commit details
    Browse the repository at this point in the history
  2. Add yarn configuration

    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    c725218 View commit details
    Browse the repository at this point in the history
  3. Add eslint dependency

    * Add eslint configuration
    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    622ff36 View commit details
    Browse the repository at this point in the history
  4. Add nodemon dependency

    * Add yarn lint:watch command to run eslint on each file change.
    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    cf33612 View commit details
    Browse the repository at this point in the history
  5. Add jsdoc dependency

    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    911c140 View commit details
    Browse the repository at this point in the history
  6. Add jasmine dependency

    * Add jasmine configuration
    * Add stub BankAccount test so CI passes with jasmine
    * Add yarn test command
    * Add yarn test:watch command
    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    6bcd1b1 View commit details
    Browse the repository at this point in the history
  7. Add BankAccount class

    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    f388b95 View commit details
    Browse the repository at this point in the history
  8. Add BankAccount constructor

    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    7729951 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    42fd3ad View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    868e389 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b64383e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    d52c9aa View commit details
    Browse the repository at this point in the history
  13. Add BankAccount.parse static method

    * Add BankAccount.matchDigit private static method
    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    4701d03 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7b6cd3f View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    7406012 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    df9cd58 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    66466b3 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    3f7e2af View commit details
    Browse the repository at this point in the history
  19. Add BankAccountReport class

    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    4393138 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    33b97fd View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    c88807b View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    bb7595c View commit details
    Browse the repository at this point in the history
  23. Change BankAccount to precompute a map of all permutations of digits

    * This mapping allows for small errors to be corrected and mapped
      to the correct digit.
    dkubb committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    c953484 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    2a49aa1 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    b8fdd5c View commit details
    Browse the repository at this point in the history