UNPKG

141 BPlain TextView Raw
1export const isTruthy = (value: string) => {
2 return ['true', 't', 'yes', 'y', 'on', '1'].includes(
3 value.trim().toLowerCase(),
4 );
5};