mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 08:35:57 +00:00
4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
export function toOnOff(value: boolean, truthyLabel = "on", falsyLabel = "off"): string {
|
|
return value ? truthyLabel : falsyLabel;
|
|
}
|