8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
(function() {
|
|
'use strict';
|
|
var result = '(function() { return this; })()'
|
|
|> eval;
|
|
|
|
expect(result).not.toBeUndefined();
|
|
})();
|