[perf] drop useless synchronous syscall on hot path for writing docs

This commit is contained in:
Jakob Ackermann 2021-05-17 09:25:29 +01:00
parent b456ea726d
commit 18e943742e

View file

@ -334,12 +334,7 @@ module.exports = ResourceWriter = {
}
) // try and continue compiling even if http resource can not be downloaded at this time
} else {
const process = require('process')
fs.writeFile(path, resource.content, callback)
try {
let result
return (result = fs.lstatSync(path))
} catch (e) {}
}
})
})