A simple, folder-driven static-site engine.
bun ssg fs
at dev 4 lines 126 B view raw
1/** 2 * Path utilities (POSIX normalization). 3 */ 4export const toPosix = (value: string): string => value.replace(/\\/g, "/");