thoughtbot/bourbon

View on GitHub
core/bourbon/library/_strip-unit.scss

Summary

Maintainability
Test Coverage
@charset "UTF-8";

/// Strips the unit from a number.
///
/// @argument {number} $value
///
/// @return {number (unitless)}
///
/// @example scss
///   $dimension: strip-unit(10em);
///
///   // Output
///   $dimension: 10;

@use "sass:math";

@function strip-unit($value) {
  @return math.div($value, $value * 0 + 1);
}