export default function ifTrue(cnd: boolean, res: string): string { return cnd ? res : ""; }