UNPKG

189 BJavaScriptView Raw
1// @flow
2import path from 'path';
3import url from 'url';
4
5export default function relativeUrl(from: string, to: string): string {
6 return url.format(url.parse(path.relative(from, to)));
7}