////////////////////////////////////////////////////////////////////////////////
/// Empty                                                                 #empty
////////////////////////////////////////////////////////////////////////////////

@use 'sass:list';

/// Checks to see if value is any type of false
/// @group helpers-checks
/// @return {bool}

@function empty($value) {
  @return not not list.index(false null 0 off def, $value);
}