mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
remove Array.from
This commit is contained in:
parent
c044db4897
commit
323890cedb
1 changed files with 3 additions and 24 deletions
|
@ -1,17 +1,3 @@
|
||||||
/* eslint-disable
|
|
||||||
handle-callback-err,
|
|
||||||
no-return-assign,
|
|
||||||
no-unused-vars,
|
|
||||||
no-useless-escape,
|
|
||||||
*/
|
|
||||||
// TODO: This file was created by bulk-decaffeinate.
|
|
||||||
// Fix any style issues and re-enable lint.
|
|
||||||
/*
|
|
||||||
* decaffeinate suggestions:
|
|
||||||
* DS101: Remove unnecessary use of Array.from
|
|
||||||
* DS103: Rewrite code to no longer use __guard__
|
|
||||||
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
||||||
*/
|
|
||||||
let OutputFileFinder
|
let OutputFileFinder
|
||||||
const async = require('async')
|
const async = require('async')
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
|
@ -34,12 +20,11 @@ module.exports = OutputFileFinder = {
|
||||||
return callback(error)
|
return callback(error)
|
||||||
}
|
}
|
||||||
const outputFiles = []
|
const outputFiles = []
|
||||||
for (const file of Array.from(allFiles)) {
|
for (const file of allFiles) {
|
||||||
if (!incomingResources.has(file)) {
|
if (!incomingResources.has(file)) {
|
||||||
const type = Path.extname(file)
|
|
||||||
outputFiles.push({
|
outputFiles.push({
|
||||||
path: file,
|
path: file,
|
||||||
type: Path.extname(file) || undefined,
|
type: Path.extname(file).replace(/^\./, '') || undefined,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,7 +47,7 @@ module.exports = OutputFileFinder = {
|
||||||
const args = [
|
const args = [
|
||||||
directory,
|
directory,
|
||||||
'(',
|
'(',
|
||||||
...Array.from(EXCLUDE_DIRS),
|
...EXCLUDE_DIRS,
|
||||||
')',
|
')',
|
||||||
'-prune',
|
'-prune',
|
||||||
'-o',
|
'-o',
|
||||||
|
@ -94,9 +79,3 @@ module.exports = OutputFileFinder = {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
function __guard__(value, transform) {
|
|
||||||
return typeof value !== 'undefined' && value !== null
|
|
||||||
? transform(value)
|
|
||||||
: undefined
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue