@jil/args
Version:
A convention based argument parsing and formatting library, with strict validation checks
9 lines • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isShortOption = void 0;
const constants_1 = require("../constants");
function isShortOption(arg) {
return constants_1.SHORT_OPTION_FORMAT.test(arg);
}
exports.isShortOption = isShortOption;
//# sourceMappingURL=isShortOption.js.map