diff --git a/js/test_cases/filters/input1.json b/js/test_cases/filters/input1.json new file mode 100644 index 0000000..b72b0cf --- /dev/null +++ b/js/test_cases/filters/input1.json @@ -0,0 +1,14 @@ +{ + "string": "{\"foo\": \"bar\"}", + "integer": 4, + "float": 7.4, + "boolean": true, + "null": null, + "array": [ + "foo", + "bar" + ], + "object": { + "foo": "bar" + } +} diff --git a/js/test_cases/filters/main.dust b/js/test_cases/filters/main.dust new file mode 100644 index 0000000..ab38db4 --- /dev/null +++ b/js/test_cases/filters/main.dust @@ -0,0 +1,3 @@ +Object parsed: {string|jp}{~n} +Object parsed and stringified: {string|jp|js}{~n} +Object stringified and parsed: {string|js|jp}{~n}