* Creates a new `readline.Interface` instance. * @param {Readable | { * input: Readable; * output: Writable; * completer?: Function; * terminal?: boolean; * history?: string[]; * historySize?: number; * removeHistoryDuplicates?: boolean; * prompt?: string; * crlfDelay?: n
(input, output, completer, terminal)
| 209 | * @returns {Interface} |
| 210 | */ |
| 211 | function createInterface(input, output, completer, terminal) { |
| 212 | return new Interface(input, output, completer, terminal); |
| 213 | } |
| 214 | |
| 215 | ObjectDefineProperties(Interface.prototype, { |
| 216 | // Redirect internal prototype methods to the underscore notation for backward |
no outgoing calls
no test coverage detected
searching dependent graphs…