Skip to content

Instantly share code, notes, and snippets.

@mturjak
Created February 17, 2014 01:17
Show Gist options
  • Select an option

  • Save mturjak/9043091 to your computer and use it in GitHub Desktop.

Select an option

Save mturjak/9043091 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.4)
// Compass (v1.0.0.alpha.18)
// ----
$a: 2;
$b: 4.345;
@function is-int($n){
@if type-of($n) == number {
@return $n - floor($n) == 0;
}
@return false;
}
test{
test1: type-of($a);
test2: type-of($b);
test3: is-int($a);
test4: is-int($b);
test5: is-int('s');
}
test {
test1: number;
test2: number;
test3: true;
test4: false;
test5: false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment