e487e8b801320597722f3e4f89ccf0a4763e415a.svn-base
322 Bytes
#!/usr/bin/env node
'use strict';
const { handleInput } = require('..');
process.stdin.resume();
process.stdin.setEncoding('utf8');
let input = '';
process.stdin.on('data', chunk => {
input += chunk;
});
process.stdin.on('end', () => {
handleInput(input, err => {
if (err) {
throw err;
}
});
});