which-electron/src/utils.js

6 lines
92 B
JavaScript

module.exports = {
isDirectory: function(a) {
return (a? a[0] == "D" : null)
},
};