Q2TG/src/constants/emoji.ts

11 lines
417 B
TypeScript
Raw Normal View History

2022-08-10 05:37:26 +00:00
import random from '../utils/random';
export default {
2022-08-10 07:30:36 +00:00
picture: () => random.pick('🎆', '🌃', '🌇', '🎇', '🌌', '🌠', '🌅', '🌉', '🏞', '🌆', '🌄', '🖼', '🗾', '🎑', '🏙', '🌁'),
color(index: number) {
2024-01-30 07:50:57 +00:00
const arr = [...new Intl.Segmenter().segment('🔴🟠🟡🟢🔵🟣⚫️⚪️🟤')].map(x => x.segment);
index = index % arr.length;
return arr[index];
},
2022-08-10 05:37:26 +00:00
};