mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
14 lines
305 B
JavaScript
14 lines
305 B
JavaScript
|
|
import people from '../src/data.js';
|
||
|
|
|
||
|
|
function stringLength(str) {
|
||
|
|
return Array.from(new Intl.Segmenter().segment(str)).length;
|
||
|
|
}
|
||
|
|
|
||
|
|
function checkEmojiLength(person) {
|
||
|
|
if(stringLength(person.emoji) > 1 && person.emoji) {
|
||
|
|
console.log(person.name, person.emoji);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
people.map(checkEmojiLength);
|