UNPKG

keycloakify

Version:

Framework to create custom Keycloak UIs

8 lines (5 loc) 231 B
import { relative as pathRelative } from "path"; export function isInside(params: { dirPath: string; filePath: string }) { const { dirPath, filePath } = params; return !pathRelative(dirPath, filePath).startsWith(".."); }