Neos\Eel\Helper\JsonHelper::parse PHP Method

parse() public method

JSON decode the given string
public parse ( string $json, boolean $associativeArrays = true ) : mixed
$json string
$associativeArrays boolean
return mixed
    public function parse($json, $associativeArrays = true)
    {
        return json_decode($json, $associativeArrays);
    }