scrabble-solver
Version:
Scrabble Solver 2 - Free, open-source, cross-platform, multi-language analysis tool for Scrabble, Scrabble Duel, Super Scrabble, Letter League, Literaki, and Kelimelik. Quickly find the top-scoring words using the given board and tiles.
21 lines (20 loc) • 687 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createCacheTimestampComparator = void 0;
const createCacheTimestampComparator = (locale) => {
return (a, b) => {
const aTimestamp = a.getLastModifiedTimestamp(locale);
const bTimestamp = b.getLastModifiedTimestamp(locale);
if (aTimestamp === bTimestamp) {
return 0;
}
if (typeof aTimestamp === 'undefined') {
return 1;
}
if (typeof bTimestamp === 'undefined') {
return -1;
}
return bTimestamp - aTimestamp;
};
};
exports.createCacheTimestampComparator = createCacheTimestampComparator;