You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
311 B
16 lines
311 B
const data = require('./emoji_data_compressed'); |
|
|
|
// decompress |
|
const emojis = {}; |
|
data.emojis.forEach(compressedEmoji => { |
|
const [ short_names, unified, search ] = compressedEmoji; |
|
emojis[short_names[0]] = { |
|
short_names, |
|
unified, |
|
search, |
|
}; |
|
}); |
|
|
|
data.emojis = emojis; |
|
|
|
module.exports = data;
|
|
|