summaryrefslogtreecommitdiff
path: root/_sass/bourbon/functions/_strip-units.scss
blob: 6c5f3e81047c34734370cf4a4ebefd5b94c8a794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@charset "UTF-8";

/// Strips the unit from a number.
///
/// @param {Number (With Unit)} $value
///
/// @example scss - Usage
///   $dimension: strip-units(10em);
///
/// @example css - CSS Output
///   $dimension: 10;
///
/// @return {Number (Unitless)}

@function strip-units($value) {
  @return ($value / ($value * 0 + 1));
}