Hello everyone, is it possible to parse ndjson as a variable value? Like this: ``` var ndjson = require("ndjson") let string = `{"foo": "bar"} {"hello": "world"}`; ndjson.parse(string); ```