UNPKG

northwind-rest-api

Version:

Local REST API Exposing Northwind Database.

25 lines (18 loc) 473 B
const args = require("./args"); function validate() { switch (args.count) { case 0: return true; case 1: if (!args.isFirstHelp() && !args.isFirstVersion()) { return error(); } return true; default: return error(); } } function error() { console.log("Wrong Usage. For help, run: northwind --help"); } module.exports = validate;