You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 11, 2024. It is now read-only.
When a callback function is given it is added as a listener for
the error and finish events on the parser stream.
Returns the parser stream.
stream Object input stream.
cb Function callback function.
deserialize
deserialize([stream][,cb])
Deserialize line-delimited JSON to commonmark nodes.
When a callback function is given it is added as a listener for
the error and eof events on the deserializer stream.
The eof event can fire multiple times so the callback may be called
multiple times.
Returns the deserializer stream.
stream Object input stream.
cb Function callback function.
serialize
serialize(node[,opts][,cb])
Serialize a commonmark AST node to line-delimited JSON.
When the node is of the document type it's direct descendants are
detached from the document and streamed as independent lines. So that
consumers of the stream will know when the document ends a node
with an eof type is sent to indicate the end of file (EOF).
When injecting documents into a stream it may be desirable to disable
this behaviour, to do so use:
{eof: false}
When a callback function is given it is added as a listener for
the error and finish events on the serializer stream.