DIR: /proc/1784574/root/usr/share/node_modules/spawn-wrap/lib/ |
Current File : //proc/1784574/root/usr/share/node_modules/spawn-wrap/lib/which-or-undefined.js |
'use strict'; const which = require("which") function whichOrUndefined(executable) { try { return which.sync(executable) } catch (error) { } } module.exports = whichOrUndefined |