mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2026-01-25 16:44:12 +00:00
6 lines
114 B
JavaScript
6 lines
114 B
JavaScript
import _ from 'lodash'
|
|
|
|
export default function findColor(colors, color) {
|
|
return _.get(colors, color, color)
|
|
}
|