Skip to content

Commit 9382e89

Browse files
committed
remove optional chaining
This breaks on Node versions lower than version 13. Normally we transpile everything, but we currently don't do this for the nesting plugin since it is not really part of the `src` folder. Will get this fixed in a better way, but for now this is a quick fix to get everything working again!
1 parent 6936087 commit 9382e89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nesting/plugin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function nesting(opts = postcssNested) {
1616
let plugin = (() => {
1717
if (
1818
typeof opts === 'function' ||
19-
(typeof opts === 'object' && opts?.hasOwnProperty('postcssPlugin'))
19+
(typeof opts === 'object' && opts.hasOwnProperty('postcssPlugin'))
2020
) {
2121
return opts
2222
}

0 commit comments

Comments
 (0)