////////////////////////////////////////////////////////////////////////////////
/// Null                                                                #is-null
////////////////////////////////////////////////////////////////////////////////

@use 'sass:meta';

/// Checks to see if value is null
/// @group helpers-checks
/// @return {bool}

@function null($value) {
  @return meta.type-of($value) == 'null';
}