Files
react.dev/_css/bourbon/functions/_strip-units.scss
2014-08-13 11:20:00 -07:00

6 lines
118 B
SCSS

// Srtips the units from a value. e.g. 12px -> 12
@function strip-units($val) {
@return ($val / ($val * 0 + 1));
}