Código estranho em fontes jQuery: var! == var? x: y;
Recentemente eu encontrei uma linha estranha nas fontes jQuery (última versão 1.9.1, pacote Sizzle, linha 129funescape
função):
funescape = function( _, escaped ) {
var high = "0x" + escaped - 0x10000;
// NaN means non-codepoint
return high !== high ? // <--- LINE 129
escaped :
// BMP codepoint
high < 0 ?
String.fromCharCode( high + 0x10000 ) :
// Supplemental Plane codepoint (surrogate pair)
String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
};
Qual é o motivo para fazerhigh !== high
comparação? Obviamente, parecereturn escaped
nunca será executado. Ou eu sinto falta de alguma coisa?
Referência: https://github.com/jquery/sizzle/blob/master/sizzle.js#L129