Skip to content

This is a simple Javascript scrapper to get a json file with emoji categorized lists.

Notifications You must be signed in to change notification settings

chrys-elrak/unicode-scrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Emoji Scrapping

This is a simple Javascript scrapper to get a json file with emoji categorized lists.

How the type look's like

    {
        __version__: string,
        [key: string]: {
            [key: string]: [
                {
                    unicode: string | string[],
                    multicode: boolean,
                    name: string,
                    emoji: string
                },
                ...
            ]
        },
        ...
    }