Skip to content

Module: json

parseJson

Back to Index
value |> text

Turns an JSON serialized text into it’s Filtrera value equivalent.

Availability

Discount Rule Reactor

Examples

import 'json'
from '{"prop":"value"}' parseJson
// Returns:
{
prop = "value"
}
Back to Index