mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
var global;
|
|
|
|
function f(x, y) {
|
|
(typeof x) === 'function'; // refinement
|
|
typeof global === 'object'; // not a refinement
|
|
x === y; // not a refinement
|
|
true; // refinement
|
|
(typeof x)[0] === 'u'; // refinement
|
|
} |