input.js 137 B

12345678
  1. (function() {
  2. 'use strict';
  3. var result = '(function() { return this; })()'
  4. |> eval;
  5. expect(result).not.toBeUndefined();
  6. })();