mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 20:29:31 +08:00
8 lines
151 B
Text
8 lines
151 B
Text
'use strict';
|
|
/**
|
|
* @param {string[]} grid
|
|
* @return {string}
|
|
*/
|
|
module.exports = function joinGridVal(grid) {
|
|
return grid.join(' / ').trim();
|
|
};
|