Check if a value is truthy.

import { isTruthy } from '@aws-lambda-powertools/commons/typeUtils';

const value = 'yes';
if (isTruthy(value)) {
// value is truthy
}
  • Parameters

    • value: unknown

      The value to check

    Returns boolean