mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
17 lines
347 B
Go
17 lines
347 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/muety/wakapi/models"
|
|
"strings"
|
|
)
|
|
|
|
func FilterColors(all map[string]string, haystack models.SummaryItems) map[string]string {
|
|
subset := make(map[string]string)
|
|
for _, item := range haystack {
|
|
if c, ok := all[strings.ToLower(item.Key)]; ok {
|
|
subset[strings.ToLower(item.Key)] = c
|
|
}
|
|
}
|
|
return subset
|
|
}
|