@oazmi/build-tools
Version:
general deno build tool scripts which I practically use in all of my typescript repos
13 lines (12 loc) • 504 B
JavaScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
import { isWindows } from "./_os.js";
import { isAbsolute as posixIsAbsolute } from "./posix/is_absolute.js";
import { isAbsolute as windowsIsAbsolute } from "./windows/is_absolute.js";
/**
* Verifies whether provided path is absolute
* @param path to be verified as absolute
*/
export function isAbsolute(path) {
return isWindows ? windowsIsAbsolute(path) : posixIsAbsolute(path);
}