1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| var fs = require('fs')
| var 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
| }
| }
|
|