Created
January 25, 2014 18:55
-
-
Save FWeinb/8621494 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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.2.14) | |
// Compass (v0.12.2) | |
// ---- | |
@function true() { | |
@return "STRING__TRUE"; | |
} | |
@function false() { | |
@return "STRING__FALSE"; | |
} | |
@function null() { | |
@return "STRING__NULL"; | |
} | |
test { | |
// Should return (string) "STRING__TRUE", returns (bool) true | |
sass: true(); | |
// Should return (string) "STRING__FALSE", returns (bool) false | |
sass: false(); | |
// Should return (string) "STRING__NULL", returns (null) null | |
sass: null(); | |
} |
This file contains 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
test { | |
sass: "STRING__TRUE"; | |
sass: "STRING__FALSE"; | |
sass: "STRING__NULL"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment