1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-07-05 12:28:51 +00:00

removed duplicated entries in non standard related regexp

This commit is contained in:
Andrea Giammarchi 2014-11-09 20:25:25 +00:00
parent f5d1318b97
commit d5f9775816
8 changed files with 9 additions and 8 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "twemoji", "name": "twemoji",
"description": "A Unicode standard based way to implement emoji across all platforms.", "description": "A Unicode standard based way to implement emoji across all platforms.",
"version": "v1.0.0", "version": "v1.1.1",
"main": "./twemoji.amd.js", "main": "./twemoji.amd.js",
"ignore": [ "ignore": [
".git", ".git",

View File

@ -1,5 +1,5 @@
{ {
"version": "1.0.1", "version": "1.1.1",
"name": "twemoji", "name": "twemoji",
"license": ["MIT", "CC-BY-4.0"], "license": ["MIT", "CC-BY-4.0"],
"description": "A Unicode standard based way to implement emoji across all platforms.", "description": "A Unicode standard based way to implement emoji across all platforms.",

View File

@ -1,5 +1,5 @@
{ {
"version": "1.1.0", "version": "1.1.1",
"name": "twemoji", "name": "twemoji",
"license": ["MIT", "CC-BY-4.0"], "license": ["MIT", "CC-BY-4.0"],
"description": "A Unicode standard based way to implement emoji across all platforms.", "description": "A Unicode standard based way to implement emoji across all platforms.",

View File

@ -181,7 +181,8 @@ Queue([
assets[path].forEach(function (emoji) { assets[path].forEach(function (emoji) {
if ( if (
q.emojiSource.indexOf(emoji) < 0 && q.emojiSource.indexOf(emoji) < 0 &&
q.variantsSensitive.indexOf(emoji) < 0 q.variantsSensitive.indexOf(emoji) < 0 &&
q.nonStandard.indexOf(emoji) < 0
) { ) {
q.nonStandard.push(emoji); 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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long