const omitBoolean = (obj: boolean | T): T | undefined => { if (obj && obj !== true) { return obj } return undefined } export default omitBoolean