This commit is contained in:
mgabdev 2020-05-12 00:55:38 -04:00
parent bb0182c1e1
commit 2fc18e41e1
2 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,7 @@ function padLeft(str, num) {
} }
exports.unicodeToUnifiedName = (str) => { exports.unicodeToUnifiedName = (str) => {
if (!str) return '';
let output = ''; let output = '';
for (let i = 0; i < str.length; i += 2) { for (let i = 0; i < str.length; i += 2) {
if (i > 0) { if (i > 0) {

View File

@ -81,8 +81,7 @@ module.exports = merge(sharedConfig, {
], ],
}, },
externals: [ externals: [
'/emoji/1f602.svg', // used for emoji picker dropdown '/emoji/sheet.png', // used in emoji-mart
'/emoji/sheet_10.png', // used in emoji-mart
], ],
excludes: [ excludes: [
'**/*.gz', '**/*.gz',