Skip to content

Commit be3b3f7

Browse files
committed
refactor(get): Remove path normalize call
1 parent 1021702 commit be3b3f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/lib/get.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = function (partialName, patternlab) {
1616
switch (partialName) {
1717
case patternlab.patterns[i].relPath:
1818
return patternlab.patterns[i];
19-
case path.normalize(patternlab.patterns[i].verbosePartial):
19+
case patternlab.patterns[i].verbosePartial:
2020
return patternlab.patterns[i];
2121
}
2222
}

0 commit comments

Comments
 (0)