aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2022-01-14 19:43:45 +0530
committerAkshay Nair <phenax5@gmail.com>2022-01-14 20:31:58 +0530
commitc2c6e8d1258158f61fba026ded1e48ffc5b36cf6 (patch)
tree1762185b79411d0c64880cc43e5639a8a1e3d35d /README.md
parent564bd628e98dc44767891249e45677948e6ec17a (diff)
downloadelxr-c2c6e8d1258158f61fba026ded1e48ffc5b36cf6.tar.gz
elxr-c2c6e8d1258158f61fba026ded1e48ffc5b36cf6.zip
feat(eval): implements 0 or more quantifier
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 415b00a..9f9d718 100644
--- a/README.md
+++ b/README.md
@@ -23,6 +23,7 @@ Whitespaces are ignore (except within literals)
* `a,b` => match `a` followed by `b` (next item)
* `[name \s\T]` => match property of object (example matches items with property `name` as non-empty string)
* `> n` | `>= n` | `< n` | `<= n` => Comparison with literal number [TODO]
+* `/pat/` => Test string values against regex [TODO]