yfx
2026-03-16 4065a1ffca0287fa48bcd35916450b6859e870dc
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
  }
}