////
/// @group tools
////

/// List of modules which have already been exported
///
/// @type List
/// @access private

$_ccs-imported-modules: () !default;

/// Export module
///
/// Ensure that the modules of CSS that we define throughout Frontend are only
/// included in the generated CSS once, no matter how many times they are
/// imported across the individual components.
///
/// @param {String} $name - Name of module - must be unique within the codebase
/// @content The passed content will only be outputted if a module of the same
///   $name has not already been outputted
/// @access public

@mixin ccs-exports($name) {
  // If the mixin is not in the list of modules already exported...
  @if not index($_ccs-imported-modules, $name) {
    // ... then add it to the list
    $_ccs-imported-modules: append($_ccs-imported-modules, $name) !global;
    // ... and output the CSS for that module
    @content;
  }
  // The next time exports is called for the module of the same name, it will be
  // found in the list and so nothing will be outputted.
}
