8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
(function() {
|
|
'use strict';
|
|
var result = '(function() { return this; })()'
|
|
|> eval;
|
|
|
|
assert.notEqual(result, undefined);
|
|
})();
|