Skip to content

Instantly share code, notes, and snippets.

@lunelson
Created October 7, 2015 09:57
Show Gist options
  • Select an option

  • Save lunelson/f591401c7cd1308158aa to your computer and use it in GitHub Desktop.

Select an option

Save lunelson/f591401c7cd1308158aa to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@import "sass-maps-plus";
$map1: (
alpha: (
beta: (
gamma: 3
)
)
);
$map2: (
(alpha beta gamma): 3
);
.debug {
map1: inspect(get($map1, alpha, beta, gamma));
map1: inspect(get($map2, alpha beta gamma));
}
.debug {
map1: 3;
map1: 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment