���� 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/lib/internal/ |
'use strict'; const { Object } = primordials; const REPL = require('repl'); const { kStandaloneREPL } = require('internal/repl/utils'); module.exports = Object.create(REPL); module.exports.createInternalRepl = createRepl; function createRepl(env, opts, cb) { if (typeof opts === 'function') { cb = opts; opts = null; } opts = { [kStandaloneREPL]: true, ignoreUndefined: false, useGlobal: true, breakEvalOnSigint: true, ...opts }; if (parseInt(env.NODE_NO_READLINE)) { opts.terminal = false; } if (env.NODE_REPL_MODE) { opts.replMode = { 'strict': REPL.REPL_MODE_STRICT, 'sloppy': REPL.REPL_MODE_SLOPPY }[env.NODE_REPL_MODE.toLowerCase().trim()]; } if (opts.replMode === undefined) { opts.replMode = REPL.REPL_MODE_SLOPPY; } const historySize = Number(env.NODE_REPL_HISTORY_SIZE); if (!Number.isNaN(historySize) && historySize > 0) { opts.historySize = historySize; } else { opts.historySize = 1000; } const repl = REPL.start(opts); const term = 'terminal' in opts ? opts.terminal : process.stdout.isTTY; repl.setupHistory(term ? env.NODE_REPL_HISTORY : '', cb); }