Sha256: 2a90c5248334b652c47e0f24af2b6dd295022fca4829f2deac335d5abd8c8f1b
Contents?: true
Size: 368 Bytes
Versions: 15
Compression:
Stored size: 368 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 index(auto inherit initial 0, $value) or (type-of($value) == "number" and not(unitless($value)))); }
Version data entries
15 entries across 15 versions & 4 rubygems