mirror of https://github.com/jkjoy/sunpeiwen.git
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
|
#! /usr/bin/env node
|
||
|
|
||
|
var JSONStream = require('./')
|
||
|
|
||
|
if(!module.parent && process.title !== 'browser') {
|
||
|
process.stdin
|
||
|
.pipe(JSONStream.parse(process.argv[2]))
|
||
|
.pipe(JSONStream.stringify('[', ',\n', ']\n', 2))
|
||
|
.pipe(process.stdout)
|
||
|
}
|
||
|
|
||
|
|