2015-03-30 11:09:48 -04:00

15 lines
257 B
JavaScript

'use strict';
var JSONStream = require('JSONStream');
/**
* Create a transform stream that formats documentation as
* stringified JSON
*
* @name json
* @return {stream.Transform}
*/
module.exports = function () {
return JSONStream.stringify();
};