mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
13 lines
251 B
JavaScript
Executable File
13 lines
251 B
JavaScript
Executable File
#! /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)
|
|
}
|
|
|
|
|