Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
refactor(util): code refactor
  • Loading branch information
Simon-He95 committed Jun 21, 2024
commit 5a3a8ddf64aa7d493dbca74e52c784db6618f589
4 changes: 1 addition & 3 deletions src/util/normalizeConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,7 @@ export function normalizeConfig(config) {

if (typeof transform === 'function') {
transformers.DEFAULT = transform
}

if (typeof transform === 'object' && transform !== null) {
} else if (typeof transform === 'object' && transform !== null) {
Object.assign(transformers, transform)
}

Expand Down
3 changes: 1 addition & 2 deletions src/util/parseGlob.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ export function parseGlob(pattern) {

if (glob.substr(0, 2) === './') {
glob = glob.substr(2)
}
if (glob.charAt(0) === '/') {
} else if (glob.charAt(0) === '/') {
glob = glob.substr(1)
}

Expand Down
6 changes: 1 addition & 5 deletions src/util/splitAtTopLevelOnly.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@ export function splitAtTopLevelOnly(input, separator) {
}
}

if (isEscaped) {
isEscaped = false
} else if (char === '\\') {
isEscaped = true
}
isEscaped = char === '\\'

if (char === '(' || char === '[' || char === '{') {
stack.push(char)
Expand Down