mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
36fde75d77
* Extended/updated documentation on code editor setup and plugins. * Moved documentation to the right file. * Fixed spelling errors in documentation and code. * Updated broken links. Co-authored-by: 迷渡 <justjavac@gmail.com> Co-authored-by: AlfieriChou <alfierichou@gmail.com> Co-authored-by: Anil Seervi <anil13112000@gmail.com Co-authored-by: Bert Belder <bertbelder@gmail.com> Co-authored-by: Fernando Basso <fernandobasso.br@gmail.com> Co-authored-by: József Sallai <jozsef@sallai.me> Co-authored-by: S4ltyGo4t <mario.weidner@gmx.de> Co-authored-by: Tommy May <tommymay37@gmail.com> Co-authored-by: Turbinya <wownucleos@gmail.com> Co-authored-by: ᴜɴвʏтᴇ <i@shangyes.net> |
||
---|---|---|
.. | ||
_constants.ts | ||
_globrex.ts | ||
_globrex_test.ts | ||
_util.ts | ||
basename_test.ts | ||
common.ts | ||
common_test.ts | ||
dirname_test.ts | ||
extname_test.ts | ||
from_file_url_test.ts | ||
glob.ts | ||
glob_test.ts | ||
interface.ts | ||
isabsolute_test.ts | ||
join_test.ts | ||
mod.ts | ||
parse_format_test.ts | ||
posix.ts | ||
README.md | ||
relative_test.ts | ||
resolve_test.ts | ||
separator.ts | ||
win32.ts | ||
zero_length_strings_test.ts |
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