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.

11 lines
481 B

  1. // @preval
  2. // Force tree shaking on emojione by exposing just a subset of its functionality
  3. const emojione = require('emojione');
  4. const mappedUnicode = emojione.mapUnicodeToShort();
  5. module.exports.unicodeToFilename = Object.keys(emojione.jsEscapeMap)
  6. .map(unicodeStr => [unicodeStr, mappedUnicode[emojione.jsEscapeMap[unicodeStr]]])
  7. .map(([unicodeStr, shortCode]) => ({ [unicodeStr]: emojione.emojioneList[shortCode].fname }))
  8. .reduce((x, y) => Object.assign(x, y), { });