Skip to content

Commit 0751431

Browse files
committed
Remove useless variable
1 parent df8d80f commit 0751431

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/evaluateTailwindFunctions.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ export default function(config) {
55
return functions({
66
functions: {
77
config: (path, defaultValue) => {
8-
const options = config()
9-
return _.get(options, _.trim(path, `'"`), defaultValue)
8+
return _.get(config(), _.trim(path, `'"`), defaultValue)
109
},
1110
},
1211
})

0 commit comments

Comments
 (0)