@use "sass:math";

// Removes the unit from the given value. e.g. 15px will become 15
@function strip-units($value) {
  @return math.div($value, $value * 0 + 1);
}
