chore: simplify promisify helper (#15952)

chore: simplify promisify helper
This commit is contained in:
Shelley Vohr 2018-12-10 08:13:09 -08:00 committed by GitHub
parent db2fda1b6f
commit 4b18a38e9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 73 additions and 23 deletions

View file

@ -40,10 +40,7 @@ Object.assign(app, {
}
})
const nativeGetFileIcon = app.getFileIcon
app.getFileIcon = (path, options = {}, cb) => {
return deprecate.promisify(nativeGetFileIcon.call(app, path, options), cb)
}
app.getFileIcon = deprecate.promisify(app.getFileIcon, 2)
const nativeAppMetrics = app.getAppMetrics
app.getAppMetrics = () => {