module.exports.formatting = function formatting(list) { if (list.length == 0) return '--'; return list.join('/'); };