UNPKG

package-proxy

Version:
9 lines (8 loc) 204 B
/** @format */ import { filterTruthy } from "../filters"; export const buildRoot = (path) => path .split("/") .filter(v => v != ".") .filter(filterTruthy) .map(() => "../") .join("");