mirror of
https://github.com/status-im/github-webhook-filter.git
synced 2025-02-03 09:13:27 +00:00
4 lines
120 B
TypeScript
4 lines
120 B
TypeScript
export function parseBool(s: string): boolean {
|
|
return ["1", "true", "on", "y", "yes"].includes(s.toLowerCase());
|
|
}
|