Created
February 17, 2014 01:17
-
-
Save mturjak/9043091 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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.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'); | |
| } |
This file contains hidden or 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 { | |
| 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