Last active
August 20, 2022 22:09
-
-
Save Jakobud/744b98b629abe018766f6d506a2e92ae to your computer and use it in GitHub Desktop.
Sort a SASS list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// list-sort | |
/// Sort a SASS list | |
/// @param $list - A SASS list | |
/// @returns A sorted SASS list | |
/// @requires function list-remove | |
/// @author Jake Wilson <[email protected]> | |
@function list-sort($list) { | |
$sortedlist: (); | |
@while length($list) > 0 { | |
$value: nth($list,1); | |
@each $item in $list { | |
@if $item < $value { | |
$value: $item; | |
} | |
} | |
$sortedlist: append($sortedlist, $value, 'space'); | |
$list: list-remove($list, index($list, $value)); | |
} | |
@return $sortedlist; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment