From 98ac2cebdd89f635eb93dedfbc5027742b5e95d4 Mon Sep 17 00:00:00 2001 From: arisnguyenit97 Date: Mon, 13 Jan 2025 15:12:47 +0700 Subject: [PATCH] :books: docs: update README.md #4 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 03212ca..0082746 100644 --- a/README.md +++ b/README.md @@ -407,6 +407,7 @@ The following built-in transformers are currently available: | `@valid` | Ensure the JSON is valid before processing it further. If the JSON string is not valid, then returns an empty string | | | `@pretty` | Format the JSON string into a human-readable, indented format. | `@pretty:{"sort_keys": true, "indent": "\t", "prefix": "tick", "width": 10}` | | `@minify` | Remove all whitespace characters from the JSON string, transforming it into a compact, single-line format order | | +| `@flip` | Reverses the order of its characters | | | `@reverse` | Reverse the order of elements in an array or the order of key-value pairs in an object function | | | `@flatten` | Flattens a JSON array by removing any nested arrays within it | `@flatten:{"deep": true}` | | `@join` | Merges multiple JSON objects into a single object | `@join:{"preserve": true}` | @@ -418,7 +419,6 @@ The following built-in transformers are currently available: | `@search` | Performs a value lookup on a JSON structure based on the specified path and returns a JSON-encoded string containing all matching values found at that path. | | | `@uppercase` | Converts the JSON string to uppercase. | | | `@lowercase` | Converts the JSON string to lowercase. | | -| `@flip` | Reverses the order of its characters | | | `@snakeCase` | Converts the string to snake_case format | | | `@camelCase` | Converts the string into camelCase | | | `@kebabCase` | Converts the input string into kebab-case, often used for URL slugs | |