Skip to content

Commit

Permalink
Update twemoji-generator.js for Emoji 5.0
Browse files Browse the repository at this point in the history
Emoji VS15/16 sequences have been moved from [`StandardizedVariants.txt`](http://unicode.org/Public/UNIDATA/StandardizedVariants.txt) to [`emoji-variation-sequences.txt`](http://unicode.org/Public/emoji/latest/emoji-variation-sequences.txt) with Unicode Emoji 5.0 / Unicode 10.0 (works already). File format is the same.
  • Loading branch information
Crissov authored Apr 5, 2017
1 parent 1d3dc38 commit 2073a65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions twemoji-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,9 @@ Queue([
// grab the list of emoji that behave differently when
// variants such \uFE0E and \uFE0F are in place
function grabStandardVariants(q) {
console.log('fetching StandardizedVariants.txt ... ');
console.log('fetching emoji-variation-sequences.txt ... ');
http.get(
"http://unicode.org/Public/UNIDATA/StandardizedVariants.txt",
"http://unicode.org/Public/emoji/latest/emoji-variation-sequences.txt",
function(res) {
var chunks = [];
if (res.statusCode == 200) {
Expand Down

0 comments on commit 2073a65

Please sign in to comment.