6 lines
119 B
JavaScript
6 lines
119 B
JavaScript
|
const Mhysa = require("mhysa");
|
||
|
|
||
|
Mhysa.fromArray([{ a: "b" }])
|
||
|
.pipe(Mhysa.stringify())
|
||
|
.pipe(process.stdout);
|