mirror of
https://github.com/twitter/twemoji.git
synced 2024-12-25 15:14:19 +00:00
removed duplicated entries in non standard related regexp
This commit is contained in:
parent
f5d1318b97
commit
d5f9775816
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "twemoji",
|
||||
"description": "A Unicode standard based way to implement emoji across all platforms.",
|
||||
"version": "v1.0.0",
|
||||
"version": "v1.1.1",
|
||||
"main": "./twemoji.amd.js",
|
||||
"ignore": [
|
||||
".git",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.0.1",
|
||||
"version": "1.1.1",
|
||||
"name": "twemoji",
|
||||
"license": ["MIT", "CC-BY-4.0"],
|
||||
"description": "A Unicode standard based way to implement emoji across all platforms.",
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"name": "twemoji",
|
||||
"license": ["MIT", "CC-BY-4.0"],
|
||||
"description": "A Unicode standard based way to implement emoji across all platforms.",
|
||||
|
@ -181,7 +181,8 @@ Queue([
|
||||
assets[path].forEach(function (emoji) {
|
||||
if (
|
||||
q.emojiSource.indexOf(emoji) < 0 &&
|
||||
q.variantsSensitive.indexOf(emoji) < 0
|
||||
q.variantsSensitive.indexOf(emoji) < 0 &&
|
||||
q.nonStandard.indexOf(emoji) < 0
|
||||
) {
|
||||
q.nonStandard.push(emoji);
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
twemoji.min.js
vendored
2
twemoji.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user