Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/globber/src/errors.ts>GlobError

Include and excludes files and directories from a deep search of the provided root directory
Latest
class GlobError
extends AggregateError
import { GlobError } from "https://deno.land/x/globber@0.1.0/src/errors.ts";

Constructors

new
GlobError(
root: string,
message: string,
errors?: unknown[],
)

Properties

root: string

The root which caused this error to be thrown.

Static Methods

is<Error extends GlobError>(value: unknown): value is Error
wrap(error: unknown, root: string): GlobError