removed bourbon from style
[theme-danix.xyz.git] / assets / sass / bourbon / bourbon / library / _strip-unit.scss
diff --git a/assets/sass/bourbon/bourbon/library/_strip-unit.scss b/assets/sass/bourbon/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));
-}