mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
import {fileURLToPath} from 'node:url';
|
|
|
|
export function toPath(urlOrPath) {
|
|
return urlOrPath instanceof URL ? fileURLToPath(urlOrPath) : urlOrPath;
|
|
}
|
|
|
|
export * from './default.js';
|