1
2
3
4
5
6
7
8
9
10
11
12
import emojisList from "https://esm.sh/emojis-list";
import { randomIn } from "https://esm.town/v/beneskildsen/randomIn?v=1";
export const emojis: string[] = emojisList;
const emojiPattern = /^\p{Emoji_Presentation}$/gu;
export const isEmoji = (emoji: string) => emojiPattern.test(emoji) || emojis.includes(emoji);
export function randomEmoji() {
return emojis[randomIn(0, emojis.length - 1)];
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
July 19, 2024