From 392998ce513b1f74459cb94c3dc49808379c3891 Mon Sep 17 00:00:00 2001 From: HerrHase Date: Sun, 15 Jan 2023 18:28:44 +0100 Subject: [PATCH] adding --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index f34e2f4..45acdf3 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,17 @@ const filter = new Filter(options) const isValid = filter.validate(result) ``` +| Name | Type | Description | +|-------------|-----------|-------------| +| _eq | {Mixed} | is equal | +| _neq | {Mixed} | is not equal | +| _in | {Mixed} | in array | +| _lt | {Mixed} | is lesser than | +| _lte | {Mixed} | is lesser or equal than | +| _gt | {Mixed} | is greater than | +| _gte | {Mixed} | is greater or equal than | +| _null | {Boolean} | is null | +| _nnull | {Boolean} | is not null | ## Reduce