RocketChat/Rocket.Chat

View on GitHub
apps/meteor/lib/isTruthy.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const isTruthy = <T>(x: T | null | undefined | 0 | false | ''): x is T => Boolean(x);