_strip-units.scss 118 B

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