Sha256: c39c8a112b712f8f1e6ddbaa81f389693d20a18b632ab65310667a5857ffcdda
Contents?: true
Size: 501 Bytes
Versions: 354
Compression:
Stored size: 501 Bytes
Contents
// Convert shorthand to the 4-value syntax @function unpack($shorthand) { @if length($shorthand) == 1 { @return nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1); } @else if length($shorthand) == 2 { @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 1) nth($shorthand, 2); } @else if length($shorthand) == 3 { @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 3) nth($shorthand, 2); } @else { @return $shorthand; } }
Version data entries
354 entries across 343 versions & 12 rubygems