Merge pull request #7881 from Snuffleupagus/fixMetadata-constant-condition

Remove a misplaced `false` from a condition in `fixMetadata`, in `metadata.js`, since it currently short circuits the entire condition
This commit is contained in:
Tim van der Meij 2016-12-08 00:29:42 +01:00 committed by GitHub
commit aaec490847

View File

@ -37,8 +37,8 @@ var error = sharedUtil.error;
var chars = '';
for (var i = 0; i < bytes.length; i += 2) {
var code = bytes.charCodeAt(i) * 256 + bytes.charCodeAt(i + 1);
chars += code >= 32 && code < 127 && code !== 60 && code !== 62 &&
code !== 38 && false ? String.fromCharCode(code) :
chars += (code >= 32 && code < 127 && code !== 60 && code !== 62 &&
code !== 38) ? String.fromCharCode(code) :
'&#x' + (0x10000 + code).toString(16).substring(1) + ';';
}
return '>' + chars;