We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If at least one of the maps given to the function as an argument is empty, the function returns null and throws the warning:
null
recursive-map-merge() expects it's parameters to be map types!
This is because Sass sees empty maps as lists:
$empty-map: (); if type-of($empty-map) == map { //This code is not executed. } if type-of($empty-map) == list { //This code is executed. }
Because the function checks if both arguments are maps, it fails with empty maps.
The text was updated successfully, but these errors were encountered:
fix bug #1
8eaf8f8
Merge pull request #2 from pentzzsolt/fix_#1
737b941
Closes #1
pentzzsolt
No branches or pull requests
If at least one of the maps given to the function as an argument is empty, the function returns
null
and throws the warning:This is because Sass sees empty maps as lists:
Because the function checks if both arguments are maps, it fails with empty maps.
The text was updated successfully, but these errors were encountered: