]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Remove pow() Sass function, which was not documented and not used internally
authorGeoff Kimball <geoff@zurb.com>
Tue, 19 Jan 2016 19:54:49 +0000 (11:54 -0800)
committerGeoff Kimball <geoff@zurb.com>
Tue, 19 Jan 2016 19:54:49 +0000 (11:54 -0800)
scss/util/_value.scss

index 8af526646da979908fd8a75e6cb82eff83e81ace..a2dadf8e55cac3f4bb063a7b80ddc67eb3514900 100644 (file)
   @return map-get($defaults, $elem);
 }
 
-/// Calculates x^y, where x is `$base` and y is `$power`.
-/// @access private
-///
-/// @param {Number} $base - Base number (x).
-/// @param {Number} $power - Exponent (y).
-@function pow($base, $power) {
-  @if $power == 0 { @return 1; }
-  @return $base * pow($base, $power - 1);
-}
-
 /// Finds a value in a nested map.
 /// @link https://css-tricks.com/snippets/sass/deep-getset-maps/ Deep Get/Set in Maps
 ///