51L3N7

RAR: window.eval

Feb 1st, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  * Simulate window.eval
  3.  *
  4.  * @param {string} code
  5.  */
  6. /* jshint newcap: false, evil: true */
  7. function myEval( code ) {
  8.     'use strict';
  9.  
  10.     Function( code )();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment