6 lines
78 B
JavaScript
6 lines
78 B
JavaScript
function f(...xs) {
|
|
'use strict';
|
|
return this;
|
|
}
|
|
|
|
assert.isUndefined(f()); |