import {OPTION_LIKE} from'../constants';
/**
* Check that an argument looks like a long option, short option,
* or short option group. Do not return true for negative numbers.
*/exportfunctionisOptionLike(arg: string): boolean {
returnOPTION_LIKE.test(arg);
}