Lines Matching defs:opts
16 function createRepl(env, opts, cb) {
17 if (typeof opts === 'function') {
18 cb = opts;
19 opts = null;
21 opts = {
26 ...opts,
30 opts.terminal = false;
34 opts.replMode = {
40 if (opts.replMode === undefined) {
41 opts.replMode = REPL.REPL_MODE_SLOPPY;
46 opts.historySize = historySize;
48 opts.historySize = 1000;
51 const repl = REPL.start(opts);
52 const term = 'terminal' in opts ? opts.terminal : process.stdout.isTTY;