yfx
2026-03-13 937c1a0bd3ae3829f59fd5c9e118c4be8029458f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const fs = require('fs')
const paths = ['C:/libjpeg-turbo']
 
if (process.arch === 'x64') {
  paths.unshift('C:/libjpeg-turbo64')
}
 
paths.forEach(function (path) {
  if (exists(path)) {
    process.stdout.write(path)
    process.exit()
  }
})
 
function exists (path) {
  try {
    return fs.lstatSync(path).isDirectory()
  } catch (e) {
    return false
  }
}