summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorWhatsARanjit <whatsaranjit@gmail.com>2017-08-25 01:11:35 +0000
committerWhatsARanjit <whatsaranjit@gmail.com>2017-08-25 11:04:43 +0000
commitbd324f9d86a79eb3a7a1a781c82eede8a4a447b8 (patch)
tree4ee37d815cda7b1662dd692fa7113b217fa64e5b /README.md
parent1db550a16c49fb7f2f086d2a46bc666c477ee50d (diff)
Added to_json function with tests and README
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7813f19..1b32396 100644
--- a/README.md
+++ b/README.md
@@ -1754,6 +1754,30 @@ Arguments: A single string.
*Type*: rvalue.
+#### `to_json`
+
+Converts input into a JSON String.
+
+For example, `{ "key" => "value" }` becomes `{"key":"value"}`.
+
+*Type*: rvalue.
+
+#### `to_json_pretty`
+
+Converts input into a pretty JSON String.
+
+For example, `{ "key" => "value" }` becomes `{\n \"key\": \"value\"\n}`.
+
+*Type*: rvalue.
+
+#### `to_yaml`
+
+Converts input into a YAML String.
+
+For example, `{ "key" => "value" }` becomes `"---\nkey: value\n"`.
+
+*Type*: rvalue.
+
#### `try_get_value`
**DEPRECATED:** replaced by `dig()`.