Files
my-pi/pi-rtk-optimizer/src/boolean-format.ts
T

4 lines
134 B
TypeScript

export function toOnOff(value: boolean, truthyLabel = "on", falsyLabel = "off"): string {
return value ? truthyLabel : falsyLabel;
}