mirror of
https://github.com/pds-nest/nest.git
synced 2025-02-16 20:53:57 +00:00
13 lines
294 B
JavaScript
13 lines
294 B
JavaScript
|
export default function objectToWordcloudFormat(words) {
|
||
|
let result = []
|
||
|
for(const word in words) {
|
||
|
if(!words.hasOwnProperty(word)) {
|
||
|
continue
|
||
|
}
|
||
|
result.push({
|
||
|
text: word,
|
||
|
value: words[word]
|
||
|
})
|
||
|
}
|
||
|
return result
|
||
|
}
|