function isBoolean()

in src/node/main.ts [28:30]


function isBoolean(value: any): value is boolean {
	return value === true || value === false;
}