mirror of
https://github.com/actions/stale.git
synced 2026-01-01 13:57:34 +08:00
4 lines
108 B
TypeScript
4 lines
108 B
TypeScript
|
|
export function isBoolean(value: unknown): value is boolean {
|
||
|
|
return value === true || value === false;
|
||
|
|
}
|