Skip to content

Instantly share code, notes, and snippets.

@HamptonMakes
Last active August 29, 2015 14:07
Show Gist options
  • Save HamptonMakes/9a971dd914b246f6824b to your computer and use it in GitHub Desktop.
Save HamptonMakes/9a971dd914b246f6824b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
$modules: () !default;
@mixin exports($name) {
$module_index: index($modules, $name);
@if (($module_index == null) or ($module_index == false)) {
$modules: append($modules, $name);
@content;
}
}
@include exports("sass") {
sass {
content: this works with any version;
}
}
@include exports("sass") {
red {
color: red;
}
}
sass {
content: this works with any version;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment