Sha256: d9e91c077803a614c783b7d4749302f2d25f29feefc6e3ad539cc53b7c4f98f1
Contents?: true
Size: 476 Bytes
Versions: 17
Compression:
Stored size: 476 Bytes
Contents
@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 str-slice($value + "", 1, 3) == "var" or str-slice($value + "", 1, 3) == "env" or index(auto inherit initial 0, $value) or (type-of($value) == "number" and not(unitless($value))) ); }
Version data entries
17 entries across 17 versions & 3 rubygems