1import { isPtCodeFileExt } from '../../sharedF/isPtCodeFileExtF.mts'2import { isPtExtNotCode } from './isPtExtNotCodeF.mts'4export const getIsMadgableLeafExt = (path: string) => {5 if (isPtCodeFileExt(path)) return true6 return isPtExtNotCode(path)7}