Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 633 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 633 Bytes

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.