Your IP : 216.73.217.112


Current Path : /home/z/i/e/zieirix/www/media/gantry5/engines/nucleus/scss/vendor/bourbon/functions/
Upload File :
Current File : /home/z/i/e/zieirix/www/media/gantry5/engines/nucleus/scss/vendor/bourbon/functions/_is-length.scss

/// Checks for a valid CSS length.
///
/// @param {String} $value

@function is-length($value) {
  @if $output-bourbon-deprecation-warnings == true {
    @warn "[Bourbon] [Deprecation] `is-length` is deprecated and will be " +
    "removed in 5.0.0.";
  }

  @return type-of($value) != "null" and (str-slice($value + "", 1, 4) == "calc"
       or index(auto inherit initial 0, $value)
       or (type-of($value) == "number" and not(unitless($value))));
}