HH\Lib\Str\is_empty

Requires the Hack Standard Library to be installed.
Facebook Engineer?

This function is available as Str\is_empty() in Facebook's www repository.

Returns true if $string is null or the empty string

namespace HH\Lib\Str;

function is_empty(
  ?string $string,
): bool;

Returns false otherwise.

Parameters

  • ?string $string

Returns

  • bool