Created
July 4, 2014 07:54
-
-
Save adamsir/46194f35cc02f9aced2a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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 (v2.0.0) | |
// ---- | |
$list: "item:1", "item:2", "item:3"; | |
@each $single in $list { | |
} | |
@function list-map($list:()) { | |
$array: $list; | |
@each $single in $list { | |
@return $array; | |
} | |
} | |
list-map($list); |
This file contains hidden or 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
source string:15: error: invalid top-level expression |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment