tailwindcss/src/util/findColor.js
2017-08-27 18:02:41 -04:00

6 lines
114 B
JavaScript

import _ from 'lodash'
export default function findColor(colors, color) {
return _.get(colors, color, color)
}