geiesmonads parser combinators tests

Check the tests of the helper classes

To serve this file, have an http-server that serves the directory above geiesmonads

This page is meant as a training to the design of composite parsers

This page uses a few collections of characters and stringified digits:
            
              const lowercases = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',];
              const uppercases = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',];
              const digits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
              const whites = [' ', '\t', '\n', '\r'];
              const text = Position.fromText;
            
          
Favicon made by Smashicons from www.flaticon.com