Skip to main content
Module

std/path/mod.ts>GlobOptions

Deno standard library
Go to Latest
interface GlobOptions
import { type GlobOptions } from "https://deno.land/std@0.97.0/path/mod.ts";

Properties

optional
extended: boolean

Extended glob syntax. See https://www.linuxjournal.com/content/bash-extended-globbing. Defaults to true.

optional
globstar: boolean

Globstar syntax. See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option. If false, ** is treated like *. Defaults to true.

optional
caseInsensitive: boolean

Whether globstar should be case insensitive.

optional
os: Deno.build.os

Operating system. Defaults to the native OS.