mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-16 02:12:48 -06:00
6 lines
162 B
TypeScript
6 lines
162 B
TypeScript
export function truthy(value: string | null | undefined) {
|
|
if (value == undefined) return false;
|
|
return value.toLowerCase() == 'true' || value == '1';
|
|
}
|
|
|