UNPKG

pelias-openstreetmap

Version:
9 lines (7 loc) 263 B
var through = require('through2'); // convenience function for converting object streams back to strings var stringify = through.obj( function( data, enc, next ){ this.push( JSON.stringify( data, null, 2 ), 'utf-8' ); next(); }); module.exports = stringify;