UNPKG

ts-project-builder

Version:

Rollup-based TypeScript builder with multi-format output and built-in common plugins.

6 lines (3 loc) 173 B
export { resolve } from 'node:path'; const ABSOLUTE_PATH_REGEX = /^(?:\/|(?:[A-Z]:)?[/\\|])/i; export const isAbsolute = (path: string) => ABSOLUTE_PATH_REGEX.test(path);