Checks if the given value is considered "empty".

A value is defined as "empty" if it meets any of the following conditions:

  • The value is an empty string ("").
  • The value is undefined.
  • The value is strictly false.
  • The value is null.
  • Parameters

    • value: any

      The value to be checked for emptiness.

    Returns boolean

    True if the value is considered empty, otherwise false.