Merge pull request #7804 from bteng22/fix/tail-appending-to-comments
Prevent tail appending to trailing comments
This commit is contained in:
@ -28,7 +28,7 @@ window.common = (function(global) {
|
||||
seedData = Array.isArray(seedData) ? seedData : [seedData];
|
||||
return seedData.reduce(function(seed, line) {
|
||||
return '' + seed + line + '\n';
|
||||
}, '');
|
||||
}, '\n');
|
||||
};
|
||||
|
||||
common.seed = common.arrayToNewLineString(common.challengeSeed);
|
||||
|
Reference in New Issue
Block a user