File size: 151 Bytes
1e92f2d
 
 
 
1
2
3
4
5
type Booleanish = boolean | "true" | "false"

export const dataAttr = (condition: boolean | undefined) =>
  (condition ? "" : undefined) as Booleanish