UNPKG

compare-with-biwako

Version:

This npm can compare the size of Lake Biwa and the 23 wards of Tokyo

20 lines (18 loc) 430 B
#!/usr/bin/env node import * as util from "node:util"; import { CompareWithBiwakoApp } from "./compare_with_biwako_app.js"; try { const { values, positionals } = util.parseArgs({ allowPositionals: true, options: { quiz: { type: "boolean", short: "q", }, }, }); const app = new CompareWithBiwakoApp(values, positionals); await app.run(); } catch (e) { console.error(e.message); }