mirror of
https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
synced 2025-10-30 09:35:31 +00:00
8 lines
183 B
JavaScript
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';
|