1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 |
x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 x1 |
/**
* Utilities for working with OS-specific file paths.
*
* Functions from this module will automatically switch to support the path style
* of the current OS, either `windows` for Microsoft Windows, or `posix` for
* every other operating system, eg. Linux, MacOS, BSD etc.
*
* To use functions for a specific path style regardless of the current OS
* import the modules from the platform sub directory instead.
*
* Example, for POSIX:
*
* ```ts
* import { fromFileUrl } from "@std/path/posix/from-file-url";
* import { assertEquals } from "@std/assert";
*
* assertEquals(fromFileUrl("file:///home/foo"), "/home/foo");
* ```
*
* Or, for Windows:
*
* ```ts
* import { fromFileUrl } from "@std/path/windows/from-file-url";
* import { assertEquals } from "@std/assert";
*
* assertEquals(fromFileUrl("file:///home/foo"), "\\home\\foo");
* ```
*
* Functions for working with URLs can be found in
* {@link ./doc/posix/~ | @std/path/posix}.
*
* @module
*/
import { basename as _function_basename } from "jsr:@std/[email protected]"
/**
* Return the last portion of a path.
*
* The trailing directory separators are ignored, and optional suffix is
* removed.
*
* @example Usage
* ```ts
* import { basename } from "@std/path/basename";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(basename("C:\\user\\Documents\\image.png"), "image.png");
* } else {
* assertEquals(basename("/home/user/Documents/image.png"), "image.png");
* }
* ```
*
* Note: If you are working with file URLs,
* use the new version of `basename` from `@std/path/unstable-basename`.
*
* @param path Path to extract the name from.
* @param suffix Suffix to remove from extracted name.
*
* @return The basename of the path.
*/
const basename = _function_basename as typeof _function_basename
export { basename }
import { DELIMITER as _variable_DELIMITER } from "jsr:@std/[email protected]"
/**
* The character used to separate entries in the PATH environment variable.
* On Windows, this is `;`. On all other platforms, this is `:`.
*/
const DELIMITER = _variable_DELIMITER as typeof _variable_DELIMITER
export { DELIMITER }
import { SEPARATOR as _variable_SEPARATOR } from "jsr:@std/[email protected]"
/**
* The character used to separate components of a file path.
* On Windows, this is `\`. On all other platforms, this is `/`.
*/
const SEPARATOR = _variable_SEPARATOR as typeof _variable_SEPARATOR
export { SEPARATOR }
import { SEPARATOR_PATTERN as _variable_SEPARATOR_PATTERN } from "jsr:@std/[email protected]"
/**
* A regular expression that matches one or more path separators.
*/
const SEPARATOR_PATTERN = _variable_SEPARATOR_PATTERN as typeof _variable_SEPARATOR_PATTERN
export { SEPARATOR_PATTERN }
import { dirname as _function_dirname } from "jsr:@std/[email protected]"
/**
* Return the directory path of a path.
*
* @example Usage
* ```ts
* import { dirname } from "@std/path/dirname";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(dirname("C:\\home\\user\\Documents\\image.png"), "C:\\home\\user\\Documents");
* } else {
* assertEquals(dirname("/home/user/Documents/image.png"), "/home/user/Documents");
* }
* ```
*
* Note: If you are working with file URLs,
* use the new version of `dirname` from `@std/path/unstable-dirname`.
*
* @param path Path to extract the directory from.
* @return The directory path.
*/
const dirname = _function_dirname as typeof _function_dirname
export { dirname }
import { extname as _function_extname } from "jsr:@std/[email protected]"
/**
* Return the extension of the path with leading period (".").
*
* @example Usage
* ```ts
* import { extname } from "@std/path/extname";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(extname("C:\\home\\user\\Documents\\image.png"), ".png");
* } else {
* assertEquals(extname("/home/user/Documents/image.png"), ".png");
* }
* ```
*
* Note: If you are working with file URLs,
* use the new version of `extname` from `@std/path/unstable-extname`.
*
* @param path Path with extension.
* @return The file extension. E.g. returns `.ts` for `file.ts`.
*/
const extname = _function_extname as typeof _function_extname
export { extname }
import { format as _function_format } from "jsr:@std/[email protected]"
/**
* Generate a path from a {@linkcode ParsedPath} object. It does the
* opposite of {@linkcode https://jsr.io/@std/path/doc/~/parse | parse()}.
*
* @example Usage
* ```ts
* import { format } from "@std/path/format";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(format({ dir: "C:\\path\\to", base: "script.ts" }), "C:\\path\\to\\script.ts");
* } else {
* assertEquals(format({ dir: "/path/to/dir", base: "script.ts" }), "/path/to/dir/script.ts");
* }
* ```
*
* @param pathObject Object with path components.
* @return The formatted path.
*/
const format = _function_format as typeof _function_format
export { format }
import { fromFileUrl as _function_fromFileUrl } from "jsr:@std/[email protected]"
/**
* Converts a file URL to a path string.
*
* @example Usage
* ```ts
* import { fromFileUrl } from "@std/path/from-file-url";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(fromFileUrl("file:///home/foo"), "\\home\\foo");
* assertEquals(fromFileUrl("file:///C:/Users/foo"), "C:\\Users\\foo");
* assertEquals(fromFileUrl("file://localhost/home/foo"), "\\home\\foo");
* } else {
* assertEquals(fromFileUrl("file:///home/foo"), "/home/foo");
* }
* ```
*
* @param url The file URL to convert to a path.
* @return The path string.
*/
const fromFileUrl = _function_fromFileUrl as typeof _function_fromFileUrl
export { fromFileUrl }
import { isAbsolute as _function_isAbsolute } from "jsr:@std/[email protected]"
/**
* Verifies whether provided path is absolute.
*
* @example Usage
* ```ts
* import { isAbsolute } from "@std/path/is-absolute";
* import { assert, assertFalse } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assert(isAbsolute("C:\\home\\foo"));
* assertFalse(isAbsolute("home\\foo"));
* } else {
* assert(isAbsolute("/home/foo"));
* assertFalse(isAbsolute("home/foo"));
* }
* ```
*
* @param path Path to be verified as absolute.
* @return `true` if path is absolute, `false` otherwise
*/
const isAbsolute = _function_isAbsolute as typeof _function_isAbsolute
export { isAbsolute }
import { join as _function_join } from "jsr:@std/[email protected]"
/**
* Joins a sequence of paths, then normalizes the resulting path.
*
* @example Usage
* ```ts
* import { join } from "@std/path/join";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(join("C:\\foo", "bar", "baz\\quux", "garply", ".."), "C:\\foo\\bar\\baz\\quux");
* } else {
* assertEquals(join("/foo", "bar", "baz/quux", "garply", ".."), "/foo/bar/baz/quux");
* }
* ```
*
* Note: If you are working with file URLs,
* use the new version of `join` from `@std/path/unstable-join`.
*
* @param paths Paths to be joined and normalized.
* @return The joined and normalized path.
*/
const join = _function_join as typeof _function_join
export { join }
import { normalize as _function_normalize } from "jsr:@std/[email protected]"
/**
* Normalize the path, resolving `'..'` and `'.'` segments.
*
* Note: Resolving these segments does not necessarily mean that all will be
* eliminated. A `'..'` at the top-level will be preserved, and an empty path is
* canonically `'.'`.
*
* @example Usage
* ```ts
* import { normalize } from "@std/path/normalize";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(normalize("C:\\foo\\bar\\..\\baz\\quux"), "C:\\foo\\baz\\quux");
* } else {
* assertEquals(normalize("/foo/bar/../baz/quux"), "/foo/baz/quux");
* }
* ```
*
* Note: If you are working with file URLs,
* use the new version of `normalize` from `@std/path/unstable-normalize`.
*
* @param path Path to be normalized
* @return The normalized path.
*/
const normalize = _function_normalize as typeof _function_normalize
export { normalize }
import type { ParsedPath as _interface_ParsedPath } from "jsr:@std/[email protected]"
/**
* A parsed path object generated by path.parse() or consumed by path.format().
*
* @example ```ts
* import { parse } from "@std/path";
*
* const parsedPathObj = parse("c:\\path\\dir\\index.html");
* parsedPathObj.root; // "c:\\"
* parsedPathObj.dir; // "c:\\path\\dir"
* parsedPathObj.base; // "index.html"
* parsedPathObj.ext; // ".html"
* parsedPathObj.name; // "index"
* ```
*/
interface ParsedPath extends _interface_ParsedPath {}
export type { ParsedPath }
import { parse as _function_parse } from "jsr:@std/[email protected]"
/**
* Return an object containing the parsed components of the path.
*
* Use {@linkcode https://jsr.io/@std/path/doc/~/format | format()} to reverse
* the result.
*
* @example Usage
* ```ts
* import { parse } from "@std/path/parse";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* const parsedPathObj = parse("C:\\path\\to\\script.ts");
* assertEquals(parsedPathObj.root, "C:\\");
* assertEquals(parsedPathObj.dir, "C:\\path\\to");
* assertEquals(parsedPathObj.base, "script.ts");
* assertEquals(parsedPathObj.ext, ".ts");
* assertEquals(parsedPathObj.name, "script");
* } else {
* const parsedPathObj = parse("/path/to/dir/script.ts");
* parsedPathObj.root; // "/"
* parsedPathObj.dir; // "/path/to/dir"
* parsedPathObj.base; // "script.ts"
* parsedPathObj.ext; // ".ts"
* parsedPathObj.name; // "script"
* }
* ```
*
* @param path Path to process
* @return An object with the parsed path components.
*/
const parse = _function_parse as typeof _function_parse
export { parse }
import { relative as _function_relative } from "jsr:@std/[email protected]"
/**
* Return the relative path from `from` to `to` based on current working
* directory.
*
* @example Usage
* ```ts
* import { relative } from "@std/path/relative";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* const path = relative("C:\\foobar\\test\\aaa", "C:\\foobar\\impl\\bbb");
* assertEquals(path, "..\\..\\impl\\bbb");
* } else {
* const path = relative("/data/foobar/test/aaa", "/data/foobar/impl/bbb");
* assertEquals(path, "../../impl/bbb");
* }
* ```
*
* @param from Path in current working directory.
* @param to Path in current working directory.
* @return The relative path from `from` to `to`.
*/
const relative = _function_relative as typeof _function_relative
export { relative }
import { resolve as _function_resolve } from "jsr:@std/[email protected]"
/**
* Resolves path segments into a path.
*
* @example Usage
* ```ts
* import { resolve } from "@std/path/resolve";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(resolve("C:\\foo", "bar", "baz"), "C:\\foo\\bar\\baz");
* assertEquals(resolve("C:\\foo", "C:\\bar", "baz"), "C:\\bar\\baz");
* } else {
* assertEquals(resolve("/foo", "bar", "baz"), "/foo/bar/baz");
* assertEquals(resolve("/foo", "/bar", "baz"), "/bar/baz");
* }
* ```
*
* @param pathSegments Path segments to process to path.
* @return The resolved path.
*/
const resolve = _function_resolve as typeof _function_resolve
export { resolve }
import { toFileUrl as _function_toFileUrl } from "jsr:@std/[email protected]"
/**
* Converts a path string to a file URL.
*
* @example Usage
* ```ts
* import { toFileUrl } from "@std/path/to-file-url";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(toFileUrl("\\home\\foo"), new URL("file:///home/foo"));
* assertEquals(toFileUrl("C:\\Users\\foo"), new URL("file:///C:/Users/foo"));
* assertEquals(toFileUrl("\\\\127.0.0.1\\home\\foo"), new URL("file://127.0.0.1/home/foo"));
* } else {
* assertEquals(toFileUrl("/home/foo"), new URL("file:///home/foo"));
* }
* ```
*
* @param path Path to convert to file URL.
* @return The file URL equivalent to the path.
*/
const toFileUrl = _function_toFileUrl as typeof _function_toFileUrl
export { toFileUrl }
import { toNamespacedPath as _function_toNamespacedPath } from "jsr:@std/[email protected]"
/**
* Resolves path to a namespace path. This is a no-op on
* non-windows systems.
*
* @example Usage
* ```ts
* import { toNamespacedPath } from "@std/path/to-namespaced-path";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(toNamespacedPath("C:\\foo\\bar"), "\\\\?\\C:\\foo\\bar");
* } else {
* assertEquals(toNamespacedPath("/foo/bar"), "/foo/bar");
* }
* ```
*
* @param path Path to resolve to namespace.
* @return The resolved namespace path.
*/
const toNamespacedPath = _function_toNamespacedPath as typeof _function_toNamespacedPath
export { toNamespacedPath }
import { common as _function_common } from "jsr:@std/[email protected]"
/**
* Determines the common path from a set of paths for the given OS.
*
* @param paths Paths to search for common path.
* @return The common path.
*
* @example Usage
* ```ts
* import { common } from "@std/path/common";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* const path = common([
* "C:\\deno\\std\\path\\mod.ts",
* "C:\\deno\\std\\fs\\mod.ts"
* ]);
* assertEquals(path, "C:\\deno\\std\\");
* } else {
* const path = common([
* "./deno/std/path/mod.ts",
* "./deno/std/fs/mod.ts"
* ]);
* assertEquals(path, "./deno/std/");
* }
* ```
*/
const common = _function_common as typeof _function_common
export { common }
import type { GlobOptions as _interface_GlobOptions } from "jsr:@std/[email protected]"
/**
* Options for {@linkcode globToRegExp}, {@linkcode joinGlobs},
* {@linkcode normalizeGlob} and {@linkcode expandGlob}.
*/
interface GlobOptions extends _interface_GlobOptions {}
export type { GlobOptions }
import { globToRegExp as _function_globToRegExp } from "jsr:@std/[email protected]"
/**
* Converts a glob string to a regular expression.
*
* Tries to match bash glob expansion as closely as possible.
*
* Basic glob syntax:
* - `*` - Matches everything without leaving the path segment.
* - `?` - Matches any single character.
* - `{foo,bar}` - Matches `foo` or `bar`.
* - `[abcd]` - Matches `a`, `b`, `c` or `d`.
* - `[a-d]` - Matches `a`, `b`, `c` or `d`.
* - `[!abcd]` - Matches any single character besides `a`, `b`, `c` or `d`.
* - `[[:<class>:]]` - Matches any character belonging to `<class>`.
* - `[[:alnum:]]` - Matches any digit or letter.
* - `[[:digit:]abc]` - Matches any digit, `a`, `b` or `c`.
* - See https://facelessuser.github.io/wcmatch/glob/#posix-character-classes
* for a complete list of supported character classes.
* - `\` - Escapes the next character for an `os` other than `"windows"`.
* - \` - Escapes the next character for `os` set to `"windows"`.
* - `/` - Path separator.
* - `\` - Additional path separator only for `os` set to `"windows"`.
*
* Extended syntax:
* - Requires `{ extended: true }`.
* - `?(foo|bar)` - Matches 0 or 1 instance of `{foo,bar}`.
* - `@(foo|bar)` - Matches 1 instance of `{foo,bar}`. They behave the same.
* - `*(foo|bar)` - Matches _n_ instances of `{foo,bar}`.
* - `+(foo|bar)` - Matches _n > 0_ instances of `{foo,bar}`.
* - `!(foo|bar)` - Matches anything other than `{foo,bar}`.
* - See https://www.linuxjournal.com/content/bash-extended-globbing.
*
* Globstar syntax:
* - Requires `{ globstar: true }`.
* - `**` - Matches any number of any path segments.
* - Must comprise its entire path segment in the provided glob.
* - See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option.
*
* Note the following properties:
* - The generated `RegExp` is anchored at both start and end.
* - Repeating and trailing separators are tolerated. Trailing separators in the
* provided glob have no meaning and are discarded.
* - Absolute globs will only match absolute paths, etc.
* - Empty globs will match nothing.
* - Any special glob syntax must be contained to one path segment. For example,
* `?(foo|bar/baz)` is invalid. The separator will take precedence and the
* first segment ends with an unclosed group.
* - If a path segment ends with unclosed groups or a dangling escape prefix, a
* parse error has occurred. Every character for that segment is taken
* literally in this event.
*
* Limitations:
* - A negative group like `!(foo|bar)` will wrongly be converted to a negative
* look-ahead followed by a wildcard. This means that `!(foo).js` will wrongly
* fail to match `foobar.js`, even though `foobar` is not `foo`. Effectively,
* `!(foo|bar)` is treated like `!(@(foo|bar)*)`. This will work correctly if
* the group occurs not nested at the end of the segment.
*
* @example Usage
* ```ts
* import { globToRegExp } from "@std/path/glob-to-regexp";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(globToRegExp("*.js"), /^[^\\/]*\.js(?:\\|\/)*$/);
* } else {
* assertEquals(globToRegExp("*.js"), /^[^/]*\.js\/*$/);
* }
* ```
*
* @param glob Glob string to convert.
* @param options Conversion options.
* @return The regular expression equivalent to the glob.
*/
const globToRegExp = _function_globToRegExp as typeof _function_globToRegExp
export { globToRegExp }
import { isGlob as _function_isGlob } from "jsr:@std/[email protected]"
/**
* Test whether the given string is a glob.
*
* @example Usage
* ```ts
* import { isGlob } from "@std/path/is-glob";
* import { assert } from "@std/assert";
*
* assert(!isGlob("foo/bar/../baz"));
* assert(isGlob("foo/*ar/../baz"));
* ```
*
* @param str String to test.
* @return `true` if the given string is a glob, otherwise `false`
*/
const isGlob = _function_isGlob as typeof _function_isGlob
export { isGlob }
import { joinGlobs as _function_joinGlobs } from "jsr:@std/[email protected]"
/**
* Joins a sequence of globs, then normalizes the resulting glob.
*
* Behaves like {@linkcode https://jsr.io/@std/path/doc/~/join | join()}, but
* doesn't collapse `**\/..` when `globstar` is true.
*
* @example Usage
* ```ts
* import { joinGlobs } from "@std/path/join-globs";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(joinGlobs(["foo", "bar", "..", "baz"]), "foo\\baz");
* assertEquals(joinGlobs(["foo", "**", "bar", "..", "baz"], { globstar: true }), "foo\\**\\baz");
* } else {
* assertEquals(joinGlobs(["foo", "bar", "..", "baz"]), "foo/baz");
* assertEquals(joinGlobs(["foo", "**", "bar", "..", "baz"], { globstar: true }), "foo/**\/baz");
* }
* ```
*
* @param globs Globs to be joined and normalized.
* @param options Glob options.
* @return The joined and normalized glob string.
*/
const joinGlobs = _function_joinGlobs as typeof _function_joinGlobs
export { joinGlobs }
import { normalizeGlob as _function_normalizeGlob } from "jsr:@std/[email protected]"
/**
* Normalizes a glob string.
*
* Behaves like
* {@linkcode https://jsr.io/@std/path/doc/~/normalize | normalize()}, but
* doesn't collapse "**\/.." when `globstar` is true.
*
* @example Usage
* ```ts
* import { normalizeGlob } from "@std/path/normalize-glob";
* import { assertEquals } from "@std/assert";
*
* if (Deno.build.os === "windows") {
* assertEquals(normalizeGlob("foo\\bar\\..\\baz"), "foo\\baz");
* assertEquals(normalizeGlob("foo\\**\\..\\bar\\..\\baz", { globstar: true }), "foo\\**\\..\\baz");
* } else {
* assertEquals(normalizeGlob("foo/bar/../baz"), "foo/baz");
* assertEquals(normalizeGlob("foo/**\/../bar/../baz", { globstar: true }), "foo/**\/../baz");
* }
* ```
*
* @param glob Glob string to normalize.
* @param options Glob options.
* @return The normalized glob string.
*/
const normalizeGlob = _function_normalizeGlob as typeof _function_normalizeGlob
export { normalizeGlob }
|