DIR: /proc/self/root/usr/share/nodejs/spawn-wrap/lib/ |
Current File : //proc/self/root/usr/share/nodejs/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 |