diff --git a/path/windows/mod.ts b/path/windows/mod.ts index 6649e91d0ed0..6ac88e637069 100644 --- a/path/windows/mod.ts +++ b/path/windows/mod.ts @@ -36,7 +36,6 @@ export * from "./resolve.ts"; export * from "./to_file_url.ts"; export * from "./to_namespaced_path.ts"; export * from "./common.ts"; -export * from "./separator.ts"; export * from "../_interface.ts"; export * from "./glob_to_regexp.ts"; export * from "./is_glob.ts"; diff --git a/path/windows/separator.ts b/path/windows/separator.ts deleted file mode 100644 index f37808a879a8..000000000000 --- a/path/windows/separator.ts +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -// This module is browser compatible. - -/** - * @deprecated (will be removed in 0.216.0) Use {@linkcode SEPARATOR} from {@link https://deno.land/std/path/windows/constants.ts} instead. - */ -export const SEP = "\\"; -/** - * @deprecated (will be removed in 0.216.0) Use {@linkcode SEPARATOR_PATTERN} from {@link https://deno.land/std/path/windows/constants.ts} instead. - */ -export const SEP_PATTERN = /[\\/]+/;