Skip to content

Commit

Permalink
📚 docs: update README.md #4
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Jan 13, 2025
1 parent 304e476 commit 98ac2ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}` |
Expand All @@ -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 | |
Expand Down

0 comments on commit 98ac2ce

Please sign in to comment.