File "_is-length.scss"

Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/everest-forms/assets/css/bourbon/bourbon/validators/_is-length.scss
File size: 368 bytes
MIME-type: text/plain
Charset: utf-8

@charset "UTF-8";

/// Checks for a valid CSS length.
///
/// @argument {string} $value
///
/// @return {boolean}
///
/// @access private

@function _is-length($value) {
  @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))));
}