freeCodeCamp/utils/sort-challengefiles.js

16 lines
562 B
JavaScript
Raw Permalink Normal View History

exports.sortChallengeFiles = function sortChallengeFiles(challengeFiles) {
const xs = challengeFiles.slice();
2020-06-01 18:28:22 +02:00
xs.sort((a, b) => {
if (a.history[0] === 'index.html') return -1;
if (b.history[0] === 'index.html') return 1;
if (a.history[0] === 'styles.css') return -1;
if (b.history[0] === 'styles.css') return 1;
if (a.history[0] === 'index.jsx') return -1;
if (b.history[0] === 'index.jsx') return 1;
if (a.history[0] === 'script.js') return -1;
if (b.history[0] === 'script.js') return 1;
2020-06-01 18:28:22 +02:00
return 0;
});
return xs;
2020-06-05 18:00:05 +02:00
};