Don’t include keywords in data file
These are only used to generate the search string, the library doesn’t need it.release
parent
41c9a2ae52
commit
dbf22073c8
|
@ -52,8 +52,6 @@ emojiData.forEach((datum) => {
|
||||||
keywords = emojiLib.lib[datum.short_name].keywords
|
keywords = emojiLib.lib[datum.short_name].keywords
|
||||||
}
|
}
|
||||||
|
|
||||||
datum.keywords = keywords
|
|
||||||
|
|
||||||
datum.search = []
|
datum.search = []
|
||||||
var addToSearch = (strings, split) => {
|
var addToSearch = (strings, split) => {
|
||||||
(Array.isArray(strings) ? strings : [strings]).forEach((string) => {
|
(Array.isArray(strings) ? strings : [strings]).forEach((string) => {
|
||||||
|
@ -69,7 +67,7 @@ emojiData.forEach((datum) => {
|
||||||
|
|
||||||
addToSearch(datum.short_names, true)
|
addToSearch(datum.short_names, true)
|
||||||
addToSearch(datum.name, true)
|
addToSearch(datum.name, true)
|
||||||
addToSearch(datum.keywords, false)
|
addToSearch(keywords, false)
|
||||||
addToSearch(datum.emoticons, false)
|
addToSearch(datum.emoticons, false)
|
||||||
|
|
||||||
datum.search = datum.search.join(',')
|
datum.search = datum.search.join(',')
|
||||||
|
|
Loading…
Reference in New Issue