Lines Matching refs:glob
290 var parseClass = (glob, position) => {
292 if (glob.charAt(pos) !== "[") {
305 while (i < glob.length) {
306 const c = glob.charAt(i);
326 if (glob.startsWith(cls, i)) {
328 return ["$.", false, glob.length - pos, true];
351 if (glob.startsWith("-]", i + 1)) {
356 if (glob.startsWith("-", i + 1)) {
368 return ["$.", false, glob.length - pos, true];
537 const glob = this.toString();
539 const anyMagic = hasMagic || __privateGet(this, _hasMagic) || __privateGet(this, _options).nocase && !__privateGet(this, _options).nocaseMagicOnly && glob.toUpperCase() !== glob.toLowerCase();
546 _glob: glob
854 parseGlob_fn = function(glob, hasMagic, noEmpty = false) {
858 for (let i = 0; i < glob.length; i++) {
859 const c = glob.charAt(i);
866 if (i === glob.length - 1) {
874 const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(glob, i);
884 if (noEmpty && glob === "*")
898 return [re, (0, unescape_js_12.unescape)(glob), !!hasMagic, uflag];