1
2// Strip out units to do math functions.
3@function strip-units($number) {
4  @return $number / ($number * 0 + 1);
5}
6