minigrep2 0.1.0

minigrep program from https://doc.rust-lang.org
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const process = require('process');

const { Config, run } = require('./lib');

function main() {
  try {
    const config = new Config(process.argv.values());
  
    run(config);
  } catch (e) {
    console.error(`Problem parsing arguments: ${e.message}`);
    process.exit(-1);
  }
}

main();