Skip to content

Commit 91546a1

Browse files
committed
fix incorrect default
1 parent 9c7100b commit 91546a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/UmdMainTemplatePlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const accessorToObjectAccess = accessor => {
2323
* @param {string=} joinWith the element separator
2424
* @returns {string} the path
2525
*/
26-
const accessorAccess = (base, accessor, joinWith = "; ") => {
26+
const accessorAccess = (base, accessor, joinWith = ", ") => {
2727
const accessors = Array.isArray(accessor) ? accessor : [accessor];
2828
return accessors
2929
.map((_, idx) => {

0 commit comments

Comments
 (0)