Sha256: 42cfa095cfd9d8e5684f33a7c11f2a9fd52a6109be7f3bf8c9da956203a1344a
Contents?: true
Size: 268 Bytes
Versions: 40
Compression:
Stored size: 268 Bytes
Contents
/// Removes the unit (e.g. px, em, rem) from a value, returning the number only. /// @param {Number} $num - Number to strip unit from. /// @return {Number} The same number, sans unit. /// @access private @function strip-unit($num) { @return $num / ($num * 0 + 1); }
Version data entries
40 entries across 40 versions & 4 rubygems