Created
September 8, 2015 11:50
-
-
Save KittyGiraudel/eecbd02ee44ea0726ccb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@function uniq($list) { | |
$uniq-list: (); | |
@each $item in $list { | |
@if not index($uniq-list, $item) { | |
$uniq-list: append($uniq-list, $item, list-separator($list)); | |
} | |
} | |
@return $uniq-list; | |
} | |
.foo { | |
uniq: uniq(1 5 5 6 3 2 2 1); | |
} |
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
.foo { | |
uniq: 1 5 6 3 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment