////////////////////////////////////////////////////////////////////////////////
/// Selector                                                        #is-selector
////////////////////////////////////////////////////////////////////////////////
///
/// Check to see if and ampersand refers to a particular string
///
/// @author Mark Notton
///

///
/// @group helpers-checks
///
/// @return {bool}

@function selector($value) {
  @return #{&} == #{$value};
}
