export default function (dict) { let answer = '' for (var key in dict) { answer = answer + key + ':' + String(dict[key]) + '\n' } return answer }