Skip to content

Commit

Permalink
fix(plugin): fix options assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
ThornWalli committed Jun 28, 2022
1 parent 49c96c8 commit ff1cf64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lost.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ module.exports = (settings = {}) => {
return {
postcssPlugin: 'lost',
prepare() {
let runSettings = assign({}, defaultSettings, settings | {});
let runSettings = assign({}, defaultSettings, settings || {});
return {
AtRule(atRule) {
lostAtRule(atRule, runSettings);
Expand Down

0 comments on commit ff1cf64

Please sign in to comment.