From a8047f449a2bb7b3b394991eb647c1d3617acabf Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Sat, 13 Apr 2024 05:39:43 -0700 Subject: [PATCH] readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 553bcc9..709d293 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,9 @@ console.log(jsStringify(obj, options)); - `space` (optional): Specifies the number of spaces to use for indentation, defaults to `0`. - `replacer` (optional): A function that alters the behavior of the stringification process by filtering and transforming the values. - `quotes` (optional): Determines the type of quotes around strings. Can be `'single'`, `'double'`, or determined automatically to avoid escapes. +- `inlineArrayLimit` (optional): Allows arrays to be serialized inline if they have fewer elements than the specified limit. +- `camelCase` (optional): When set to `true`, object keys are transformed into camelCase. +- `camelCaseFn` (optional): A custom function that can be provided to convert object keys into camelCase using a custom transformation logic. ## Contributing