Skip to content

Instantly share code, notes, and snippets.

@lionelB
Created November 28, 2013 09:34
Show Gist options
  • Save lionelB/7689392 to your computer and use it in GitHub Desktop.
Save lionelB/7689392 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 {
eq: (42px == 42);
stricteq: stricteq(42px, 42);
}
a {
eq: true;
stricteq: false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment