mirror of
https://github.com/antonmedv/fx
synced 2024-11-03 15:40:12 +00:00
30 lines
589 B
JavaScript
30 lines
589 B
JavaScript
const os = require('os')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
try {
|
|
require(path.join(os.homedir(), '.fxrc'))
|
|
} catch (err) {
|
|
if (err.code !== 'MODULE_NOT_FOUND') throw err
|
|
}
|
|
|
|
void async function () {
|
|
let buffer = ''
|
|
process.stdin.setEncoding('utf8')
|
|
for await (let chunk of process.stdin) {
|
|
buffer += chunk
|
|
}
|
|
let x = JSON.parse(buffer)
|
|
|
|
// Reducers %v
|
|
|
|
if (typeof x === 'undefined') {
|
|
process.stderr.write('undefined')
|
|
} else {
|
|
process.stdout.write(JSON.stringify(x))
|
|
}
|
|
}().catch(err => {
|
|
console.error(err)
|
|
process.exitCode = 1
|
|
})
|