Skip to content

Instantly share code, notes, and snippets.

@FWeinb
Created January 25, 2014 18:55
Show Gist options
  • Save FWeinb/8621494 to your computer and use it in GitHub Desktop.
Save FWeinb/8621494 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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();
}
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