Fediversity/website/node_modules/unicorn-magic/node.js
2024-11-13 15:47:11 +01:00

8 lines
183 B
JavaScript

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