dcdunkan / emoji-scraper

Scrap emoji from Unicode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Emoji Scraper

Parser for the emoji data provided by Unicode.

CLI Usage

You need Deno to use this tool.

$ deno run --allow-write --allow-net \
  https://raw.githubusercontent.com/dcdunkan/emoji-scraper/main/cli.ts \
  [options]

Provide the argument --help to see the available options.

Example Usage:

$ !! --json --dedupe -o latest.json

Module

import {
  fetchEmoji,
} from "https://raw.githubusercontent.com/dcdunkan/emoji-scraper/main/mod.ts";

const emoji = await fetchEmoji("15.1", { /* options */ });
console.log(emoji); // array of `Emoji` type.

About

Scrap emoji from Unicode

License:MIT License


Languages

Language:TypeScript 100.0%