We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1330a32 commit de44553Copy full SHA for de44553
src/vs/base/common/glob.ts
@@ -311,9 +311,7 @@ const NULL = function (): string | null {
311
*
312
* See {@link FALSE} and {@link NULL}.
313
*/
314
-export const isEmptyPattern = (
315
- pattern: ParsedPattern | ParsedExpression,
316
-): pattern is (typeof FALSE | typeof NULL) => {
+export function isEmptyPattern(pattern: ParsedPattern | ParsedExpression): pattern is (typeof FALSE | typeof NULL) {
317
if (pattern === FALSE) {
318
return true;
319
}
@@ -323,7 +321,7 @@ export const isEmptyPattern = (
323
321
324
322
325
return false;
326
-};
+}
327
328
function parsePattern(arg1: string | IRelativePattern, options: IGlobOptions): ParsedStringPattern {
329
if (!arg1) {
0 commit comments