UNPKG

hexo-related-posts

Version:

Hexo plugin that generates related posts list with TF/IDF algorithm

16 lines (12 loc) 285 B
const fillMatrix = (matrix, key1, key2, value) => { if (!matrix[key1]) { matrix[key1] = {}; } if (!matrix[key2]) { matrix[key2] = {}; } matrix[key1][key2] = value; matrix[key2][key1] = value; return matrix; } module.exports = fillMatrix;