material-extensions / material-icons-browser-extension

Browser Addon that enhances file browsers of version controls with material icons.
MIT License
499 stars 38 forks source link

Matching multiple file extensions automatically #50

Closed zm-cttae closed 1 year ago

zm-cttae commented 1 year ago

Quick sketch for this:

const fileName = 'phpcs.xml.dist.sample';
const fileExtensions = [];
for (let index = 0; index < fileName.length; index += 1) {
  if (fileName[index] === '.') fileExtensions.push(fileName.slice(index + 1));
}