import { isFsPath } from "https://deno.land/x/ayonli_jsext@v0.9.72/esm/path/util.js";
Checks if the given path
is a file system path.
Examples
Example 1
Example 1
import { isFsPath } from "@ayonli/jsext/path";
console.assert(isFsPath("/usr/bin"));
console.assert(isFsPath("C:\\Windows\\System32"));
console.assert(isFsPath("./foo/bar"));
console.assert(isFsPath("../foo/bar"));