Skip to content

Commit 5f79ee2

Browse files
author
Brent Schmidt
committed
fix: remove !== defaultGetLocalIdent check
1 parent 96ba438 commit 5f79ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ function getModulesPlugins(options, loaderContext) {
296296

297297
// A null/undefined value signals that we should invoke the default
298298
// getLocalIdent method.
299-
if (localIdent == null && getLocalIdent !== defaultGetLocalIdent) {
299+
if (localIdent == null) {
300300
localIdent = defaultGetLocalIdent(
301301
loaderContext,
302302
localIdentName,

0 commit comments

Comments
 (0)