remove files
This commit is contained in:
parent
ad523574e2
commit
6ded0afc1e
4 changed files with 9 additions and 3 deletions
Binary file not shown.
File diff suppressed because one or more lines are too long
|
@ -1,18 +1,25 @@
|
||||||
// The output of this module is designed to mimic emoji-mart's
|
// The output of this module is designed to mimic emoji-mart's
|
||||||
// "data" object, such that we can use it for a light version of emoji-mart's
|
// "data" object, such that we can use it for a light version of emoji-mart's
|
||||||
// emojiIndex.search functionality.
|
// emojiIndex.search functionality.
|
||||||
import emojiCompressed from './emoji_compressed';
|
// import emojiCompressed from './emoji_compressed';
|
||||||
import { unicodeToUnifiedName } from './unicode_to_unified_name';
|
import { unicodeToUnifiedName } from './unicode_to_unified_name';
|
||||||
|
|
||||||
const [ shortCodesToEmojiData, skins, categories, short_names ] = emojiCompressed;
|
const [ shortCodesToEmojiData, skins, categories, short_names ] = [
|
||||||
|
[],
|
||||||
|
[],
|
||||||
|
[],
|
||||||
|
[],
|
||||||
|
];
|
||||||
|
|
||||||
const emojis: Record<string, any> = {};
|
const emojis: Record<string, any> = {};
|
||||||
|
|
||||||
// decompress
|
// decompress
|
||||||
Object.keys(shortCodesToEmojiData).forEach((shortCode) => {
|
Object.keys(shortCodesToEmojiData).forEach((shortCode) => {
|
||||||
|
// @ts-ignore
|
||||||
const [
|
const [
|
||||||
_filenameData, // eslint-disable-line @typescript-eslint/no-unused-vars
|
_filenameData, // eslint-disable-line @typescript-eslint/no-unused-vars
|
||||||
searchData,
|
searchData,
|
||||||
|
// @ts-ignore
|
||||||
] = shortCodesToEmojiData[shortCode];
|
] = shortCodesToEmojiData[shortCode];
|
||||||
const [
|
const [
|
||||||
native,
|
native,
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue