UNPKG

rwsdk

Version:

Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime

8 lines (7 loc) 221 B
import { relative } from "node:path"; import path from "node:path"; export const getShortName = (file, root) => file === root ? "" : file.startsWith(root + path.sep) ? relative(root, file) : file;