import {fileURLToPath} from 'node:url';
export function toPath(urlOrPath) {
return urlOrPath instanceof URL ? fileURLToPath(urlOrPath) : urlOrPath;
}
export * from './default.js';