tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test-eval.js (284B)


      1 /*
      2 Copyright (c) 2019 The Khronos Group Inc.
      3 Use of this source code is governed by an MIT-style license that can be
      4 found in the LICENSE.txt file.
      5 */
      6 /**
      7 * Calls eval.
      8 *
      9 * This is here so other modules can use "use strict":
     10 */
     11 TestEval = function(str) {
     12  return eval(str);
     13 };