1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-11 10:07:54 -05:00
denoland-deno/std/path
Nayeem Rahman a8f74aa381
fix: Improve URL compatibility (#6807)
- Fix protocol regex.
- Truncate repeated leading slashes in file paths.
- Make drive letter support platform-independent.
- Drop the hostname if a drive letter is parsed.
- Fix drive letter normalization and basing.
- Allow basing over the host.
- Fix same-protocol basing.
- Remove Windows UNC path support.
- Reverts #6418. This is non-standard. Wouldn't be too much of a problem but it 
   makes other parts of the spec hard to realize.
2020-07-23 21:37:11 -04:00
..
_constants.ts fix(std/path): Support browsers (#6003) 2020-05-31 13:48:32 -04:00
_globrex.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
_globrex_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
_interface.ts fix(std/path): Support browsers (#6003) 2020-05-31 13:48:32 -04:00
_util.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
basename_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
common.ts fix(std/path): Support browsers (#6003) 2020-05-31 13:48:32 -04:00
common_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
dirname_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
extname_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
from_file_url_test.ts fix: Improve URL compatibility (#6807) 2020-07-23 21:37:11 -04:00
glob.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
glob_test.ts Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
isabsolute_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
join_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
mod.ts fix(std/path): Support browsers (#6003) 2020-05-31 13:48:32 -04:00
parse_format_test.ts refactor(std/path): enrich the types in parse_format_test (#6803) 2020-07-19 12:13:05 -04:00
posix.ts fix: Improve URL compatibility (#6807) 2020-07-23 21:37:11 -04:00
README.md Miscellaneous documentation and spelling improvements (#5527) 2020-05-17 19:24:39 +02:00
relative_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
resolve_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00
separator.ts fix(std/path): Support browsers (#6003) 2020-05-31 13:48:32 -04:00
win32.ts fix: Improve URL compatibility (#6807) 2020-07-23 21:37:11 -04:00
zero_length_strings_test.ts refactor: Don't destructure the Deno namespace (#6268) 2020-06-12 15:23:38 -04:00

Deno Path Manipulation Libraries

Usage:

import * as path from "https://deno.land/std/path/mod.ts";

globToRegExp

Generate a regex based on glob pattern and options This was meant to be using the the fs.walk function but can be used anywhere else.

import { globToRegExp } from "https://deno.land/std/path/glob.ts";

globToRegExp("foo/**/*.json", {
  flags: "g",
  extended: true,
  globstar: true,
}); // returns the regex to find all .json files in the folder foo