UNPKG

astro-loader-obsidian

Version:
7 lines (5 loc) 224 B
import { OBSIDIAN_CONFIG_FOLDER } from "./constants"; export const isConfigFile = (file: string, baseDir: string) => { const fileUrl = new URL(file, baseDir); return fileUrl.pathname.includes(OBSIDIAN_CONFIG_FOLDER); }