remove guard helper

This commit is contained in:
Brian Gough 2020-12-18 15:09:48 +00:00
parent 0bae53c7f3
commit c044db4897

View file

@ -36,9 +36,10 @@ module.exports = OutputFileFinder = {
const outputFiles = [] const outputFiles = []
for (const file of Array.from(allFiles)) { for (const file of Array.from(allFiles)) {
if (!incomingResources.has(file)) { if (!incomingResources.has(file)) {
const type = Path.extname(file)
outputFiles.push({ outputFiles.push({
path: file, path: file,
type: __guard__(file.match(/\.([^\.]+)$/), (x) => x[1]), type: Path.extname(file) || undefined,
}) })
} }
} }