mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
import _ from 'lodash'
|
|
import functions from 'postcss-functions'
|
|
|
|
export default function(config) {
|
|
return functions({
|
|
functions: {
|
|
config: (path, defaultValue) => {
|
|
return _.get(config(), _.trim(path, `'"`), defaultValue)
|
|
},
|
|
},
|
|
})
|
|
}
|