strom/samples/parse.js

7 lines
147 B
JavaScript
Raw Permalink Normal View History

const strom = require("stromjs");
2018-12-04 06:30:38 +00:00
strom
.fromArray(['{ "a": "b" }'])
2020-07-04 04:08:31 +00:00
.pipe(strom.parse())
2018-12-04 06:30:38 +00:00
.on("data", object => console.log(object));