deno.land / std@0.224.0 / path / normalize_glob.ts
12345678910111213141516171819202122// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import type { GlobOptions } from "./_common/glob_to_reg_exp.ts";import { isWindows } from "./_os.ts";import { normalizeGlob as posixNormalizeGlob } from "./posix/normalize_glob.ts";import { normalizeGlob as windowsNormalizeGlob,} from "./windows/normalize_glob.ts";
export type { GlobOptions };
/** Like normalize(), but doesn't collapse "**\/.." when `globstar` is true. */export function normalizeGlob( glob: string, options: GlobOptions = {},): string { return isWindows ? windowsNormalizeGlob(glob, options) : posixNormalizeGlob(glob, options);}
Version Info