6 lines
83 B
JavaScript
6 lines
83 B
JavaScript
function f({x}) {
|
|
'use strict';
|
|
return this;
|
|
}
|
|
|
|
assert.isUndefined(f({x: 42})); |