Created
April 15, 2015 18:14
-
-
Save beardedinbinary/f6ae4271e3cb1e1b2414 to your computer and use it in GitHub Desktop.
Strip Units Sass Function
This file contains 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
@function strip-units($number) { | |
@return $number / ($number * 0 + 1); | |
} | |
//strip-units(13.48cm) will return 13.48. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment