File tree Expand file tree Collapse file tree 2 files changed +4
-5447
lines changed Expand file tree Collapse file tree 2 files changed +4
-5447
lines changed Original file line number Diff line number Diff line change @@ -1192,7 +1192,7 @@ module.exports = function(grunt) {
11921192 // Convert the entities list to PHP array syntax.
11931193 entities = '\'' + emojiArray . filter ( function ( val ) {
11941194 return val . length >= 8 ? val : false ;
1195- } ) . join ( '\',\n \'' ) + '\'' ;
1195+ } ) . join ( '\', \'' ) + '\'' ;
11961196
11971197 // Create a list of all characters used by the emoji list.
11981198 partials = partials . replace ( / - / g, '\n' ) ;
@@ -1203,7 +1203,7 @@ module.exports = function(grunt) {
12031203 // Convert the partials list to PHP array syntax.
12041204 partials = '\'' + Array . from ( partialsSet ) . filter ( function ( val ) {
12051205 return val . length >= 8 ? val : false ;
1206- } ) . join ( '\',\n \'' ) + '\'' ;
1206+ } ) . join ( '\', \'' ) + '\'' ;
12071207
12081208 regex = '// START: emoji arrays\n' ;
12091209 regex += '\t$entities = array( ' + entities + ' );\n' ;
You can’t perform that action at this time.
0 commit comments