Skip to content

Instantly share code, notes, and snippets.

@MoOx
Created November 28, 2013 09:21
Show Gist options
  • Save MoOx/7689258 to your computer and use it in GitHub Desktop.
Save MoOx/7689258 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
@function stricteq($a, $b) {
@if ($a == $b) {
@if (unit($a) == unit($b)) {
@return true;
}
}
@return false;
}
a {
@if (42px == 42) {
eq: false;
}
@else {
eq: true;
}
@if (stricteq(42px, 42)) {
stricteq: false;
}
@else {
stricteq: true;
}
}
a {
eq: false;
stricteq: true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment