@use 'sass:math';

/*
  The function strips the unit from a given `$number`.
*/
@function strip-unit($number) {
  @return math.div($number, ($number * 0 + 1));
}
