Consider dropping prepend(), in favor of using join() directly:
|
@function prepend($list, $value) { |
|
@return join($value, $list); |
|
} |
In doing so we can eliminate https://github.com/google/docsy/blob/main/assets/scss/support/_functions.scss.
AFAICT, there is only one instance of the call to prepend() in Docsy SCSS.
The other function that was in this file (color-diff()) was removed by:
Consider dropping
prepend(), in favor of usingjoin()directly:docsy/assets/scss/support/_functions.scss
Lines 3 to 5 in c8530e3
In doing so we can eliminate https://github.com/google/docsy/blob/main/assets/scss/support/_functions.scss.
AFAICT, there is only one instance of the call to
prepend()in Docsy SCSS.The other function that was in this file (
color-diff()) was removed by: