site/node_modules/unicorn-magic/node.js

8 lines
183 B
JavaScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
import {fileURLToPath} from 'node:url';
export function toPath(urlOrPath) {
return urlOrPath instanceof URL ? fileURLToPath(urlOrPath) : urlOrPath;
}
export * from './default.js';