UNPKG

@parcel/utils

Version:

Blazing fast, zero configuration web application bundler

8 lines (6 loc) 189 B
// @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))); }