schat2-clive/src/utils/get-word-key.js

8 lines
115 B
JavaScript
Executable File

'use strict';
function getWordKey(word) {
return word.split('').sort().join('');
}
module.exports = getWordKey;