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