mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 06:49:13 +08:00
3 lines
137 B
Text
3 lines
137 B
Text
export default function toColorValue(maybeFunction) {
|
|
return typeof maybeFunction === 'function' ? maybeFunction({}) : maybeFunction
|
|
}
|