Files
animate/webGl/my-threejs-test/node_modules/@parcel/utils/src/relativeUrl.js
2024-06-24 21:24:00 +12:00

8 lines
189 B
JavaScript

// @flow
import path from 'path';
import url from 'url';
export default function relativeUrl(from: string, to: string): string {
return url.format(url.parse(path.relative(from, to)));
}