brouilleursdeblanc/_sass/vendor/bourbon/functions/_strip-units.scss
Michael Rose 56494a09af Cleanup stylesheets
- Add Bourbon and Neat
2014-09-04 14:49:14 -04:00

5 lines
118 B
SCSS

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