Skip to content

Commit

Permalink
do not use nullish coalescing (#61)
Browse files Browse the repository at this point in the history
fixes #60
  • Loading branch information
patricklx authored Sep 14, 2023
1 parent 8dbd909 commit 99f7f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ module.exports = function(sass) {
sourceComments: options.sourceComments,
sourceMap: options.sourceMap,
sourceMapEmbed: options.sourceMapEmbed,
sourceMapIncludeSources: options.sourceMapIncludeSources ?? true,
sourceMapIncludeSources: options.sourceMapIncludeSources === undefined ? true : options.sourceMapIncludeSources,
sourceMapContents: options.sourceMapContents,
sourceMapRoot: options.sourceMapRoot,
fiber: options.fiber
Expand Down

0 comments on commit 99f7f7a

Please sign in to comment.