import { match } from "https://deno.land/x/easyts@0.1.3/path/mod.ts";
reports whether name matches the shell pattern.
Examples
Example 1
Example 1
consoloe.log(match("abc", "abc")) // true
consoloe.log(match("a*", "abc")) // true
consoloe.log(match("a*\/b", "a/c/b")) // false