Last active
August 29, 2015 14:07
-
-
Save HamptonMakes/9a971dd914b246f6824b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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