���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /home/real/node-v13.0.1/test/parallel/ |
/* eslint-disable strict */ require('../common'); // In Node.js 0.10, a bug existed that caused strict functions to not capture // their environment when evaluated. When run in 0.10 `test()` fails with a // `ReferenceError`. See https://github.com/nodejs/node/issues/2245 for details. const assert = require('assert'); function test() { const code = [ 'var foo = {m: 1};', '', 'function bar() {', '\'use strict\';', 'return foo; // foo isn\'t captured in 0.10', '};' ].join('\n'); eval(code); return bar(); // eslint-disable-line no-undef } assert.deepStrictEqual(test(), { m: 1 });