Check if a value is truthy.
import { isTruthy } from '@aws-lambda-powertools/commons/typeUtils';const value = 'yes';if (isTruthy(value)) { // value is truthy} Copy
import { isTruthy } from '@aws-lambda-powertools/commons/typeUtils';const value = 'yes';if (isTruthy(value)) { // value is truthy}
https://github.com/getify/You-Dont-Know-JS/blob/2nd-ed/types-grammar/ch4.md#toboolean
The value to check
Check if a value is truthy.
Example
See
https://github.com/getify/You-Dont-Know-JS/blob/2nd-ed/types-grammar/ch4.md#toboolean