@sergdudko/objectstream
Version:
Creates a stream to convert json from string or convert json to string.
23 lines • 581 B
JavaScript
;
/**
* Module for stream conversion Json to String and String to Json
* @module sergdudko/objectstream
* @author Siarhei Dudko <slavianich@gmail.com>
* @copyright 2020
* @license MIT
* @version 2.0.0
* @requires stream
*/
const Parser_1 = require("./classes/Parser");
const Stringifer_1 = require("./classes/Stringifer");
module.exports = (module.exports = {
/**
* Object to String stream
*/
Stringifer: Stringifer_1.Stringifer,
/**
* String to Object stream
*/
Parser: Parser_1.Parser,
});
//# sourceMappingURL=index.js.map