Skip to content

Instantly share code, notes, and snippets.

@aarongarciah
Last active May 19, 2016 11:42
Show Gist options
  • Save aarongarciah/6377e88a55f98b8de32f9841e84f6e6a to your computer and use it in GitHub Desktop.
Save aarongarciah/6377e88a55f98b8de32f9841e84f6e6a to your computer and use it in GitHub Desktop.
Some useful Sass functions

###Strip units

@function strip-unit($number) {
  @if type-of($number) == 'number' and not unitless($number) {
    @return $number / ($number * 0 + 1);
  }

  @return $number;
}

@function strip-units($value) {
  @return $value / (($value * 0) + 1 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment