From 54a471c0098266c4c020c5bcdaf1a049d14d173d Mon Sep 17 00:00:00 2001 From: HerrHase Date: Sun, 15 Jan 2023 18:33:19 +0100 Subject: [PATCH] adding --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 45acdf3..d65b01f 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ const filter = new Filter(options) const isValid = filter.validate(result) ``` +Options: + | Name | Type | Description | |-------------|-----------|-------------| | _eq | {Mixed} | is equal | @@ -40,6 +42,8 @@ const isValid = filter.validate(result) ## Reduce +Skip or Limit Elements from a an Array. + Basic Usage: ``` @@ -49,6 +53,13 @@ results = reduce({ }, results) ``` +Options: + +| Name | Type | Description | +|-------------|-----------|-------------| +| limit | {Number} | limit elements | +| offset | {Number} | skip elements | + ## OrderBy Basic Usage: