Lines Matching refs:value
40 * Determines if the argument may be used as an option value.
47 function isOptionValue(value) {
48 if (value == null) return false;
58 * In strict mode we throw errors if value is option-like.
60 function isOptionLikeValue(value) {
61 if (value == null) return false;
63 return value.length > 1 && StringPrototypeCharAt(value, 0) === '-';
91 * Determines if `arg` is a long option and value in the same argument.
112 * // -fb is an option and a value, not a short option group
135 * Determine if arg is a short string option followed by its value.
174 * Check if the given option includes a default value