mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
9 lines
144 B
JavaScript
9 lines
144 B
JavaScript
function add(x, y) {
|
|
return x+y;
|
|
}
|
|
if (sneaky())
|
|
add.apply = function() { return 56; };
|
|
|
|
add.call(null, 23, 19);
|
|
add.apply(null, [23, 19]);
|