Edit File: toColorValue.js
export default function toColorValue(maybeFunction) { return typeof maybeFunction === 'function' ? maybeFunction({}) : maybeFunction }
Back