# pull-json-doubleline **Repository Path**: mirrors_dominictarr/pull-json-doubleline ## Basic Information - **Project Name**: pull-json-doubleline - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pull-json-doubleline stream json stringify and parser into double newline delimited json. double newline delimiting means you can use indented json as the stream format, which is more human readable. ## example ``` js var pullJson = require('pull-json-doubleline') pull( source, pullJson.stringify(), pullJson.parse(), sink ) ``` ## api ### `pullJson = require('pull-json-doubleline')` ### `pullJson.stringify() => through` stringify a stream of objects into double newline delimited json strings. ### `pullJson.parse() => through` transform a stream of double newline delimited json strings into objects. ### `pullJson(source) => decodedSource` decode a source stream of json buffers, return a source stream of objects. ### `pullJson(sink) => encodedSink` encode a sink stream for json buffers, return a sink stream for objects. ### `pullJson(objectDuplex) => serializedDuplex` encode/decode around a duplex stream of json buffers, return a stream that can be piped to a io steam. ## License MIT