function count(str) {
str = str.replace(/\s/g, '').toString()
const obj = {}
const l = str.length
for(let i = 0; i<l; i++) {
obj[str.charAt(i)] ? obj[str.charAt(i)]++ : obj[str.charAt(i)] = 1
}
return obj
}
function count(str) {
str = str.replace(/\s/g, '').toString()
const obj = {}
const l = str.length
for(let i = 0; i<l; i++) {
obj[str.charAt(i)] ? obj[str.charAt(i)]++ : obj[str.charAt(i)] = 1
}
return obj
}