/** * @typedef URL * @property {string} hash * @property {string} host * @property {string} hostname * @property {string} href * @property {string} origin * @property {string} password * @property {string} pathname * @property {string} port * @property {string} protocol * @property {string} search * @property {any} searchParams * @property {string} username * @property {() => string} toString * @property {() => string} toJSON */ /** * @param {unknown} fileURLOrPath * @returns {fileURLOrPath is URL} */ // From: export function isUrl(fileURLOrPath) { return ( fileURLOrPath !== null && typeof fileURLOrPath === 'object' && // @ts-expect-error: indexable. fileURLOrPath.href && // @ts-expect-error: indexable. fileURLOrPath.origin ) }