Pretty usable.
[wolnelektury.git] / src / wolnelektury / static / 2021 / css / utils / bourbon / library / _strip-unit.scss
diff --git a/src/wolnelektury/static/2021/css/utils/bourbon/library/_strip-unit.scss b/src/wolnelektury/static/2021/css/utils/bourbon/library/_strip-unit.scss
deleted file mode 100644 (file)
index f4f660a..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-@charset "UTF-8";
-
-/// Strips the unit from a number.
-///
-/// @argument {number} $value
-///
-/// @return {number (unitless)}
-///
-/// @example scss
-///   $dimension: strip-unit(10em);
-///
-///   // Output
-///   $dimension: 10;
-
-@function strip-unit($value) {
-  @return ($value / ($value * 0 + 1));
-}