Mercurial > nebulaweb3
annotate default/assets/scss/vendors/bourbon/library/_strip-unit.scss @ 0:1d038bc9b3d2 default tip
Up:default
author | Liny <dev@neowd.com> |
---|---|
date | Sat, 31 May 2025 09:21:51 +0800 |
parents | |
children |
rev | line source |
---|---|
0 | 1 @charset "UTF-8"; |
2 | |
3 /// Strips the unit from a number. | |
4 /// | |
5 /// @argument {number} $value | |
6 /// | |
7 /// @return {number (unitless)} | |
8 /// | |
9 /// @example scss | |
10 /// $dimension: strip-unit(10em); | |
11 /// | |
12 /// // Output | |
13 /// $dimension: 10; | |
14 | |
15 @function strip-unit($value) { | |
16 @return ($value / ($value * 0 + 1)); | |
17 } |