Skip to content

Commit

Permalink
Builded
Browse files Browse the repository at this point in the history
  • Loading branch information
barsdeveloper committed Jan 3, 2024
1 parent 8760046 commit 4701a28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions dist/parsernostrum.js
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,9 @@ class Parsernostrum {
/** Parser accepting any digits only number */
static numberInteger = this.reg(/[\-\+]?\d+(?!\.\d)/).map(Number)

/** Parser accepting any digits only number and returns a BigInt */
static numberBigInteger = this.reg(this.numberInteger.getParser().parser.regexp).map(BigInt)

/** Parser accepting any digits only number */
static numberNatural = this.reg(/\d+/).map(Number)

Expand Down
2 changes: 1 addition & 1 deletion dist/parsernostrum.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4701a28

Please sign in to comment.