_strip-units.scss 330 B

1234567891011121314151617
  1. @charset "UTF-8";
  2. /// Strips the unit from a number.
  3. ///
  4. /// @param {Number (With Unit)} $value
  5. ///
  6. /// @example scss - Usage
  7. /// $dimension: strip-units(10em);
  8. ///
  9. /// @example css - CSS Output
  10. /// $dimension: 10;
  11. ///
  12. /// @return {Number (Unitless)}
  13. @function strip-units($value) {
  14. @return ($value / ($value * 0 + 1));
  15. }