事件:'pause'
🌐 Event: 'pause'
当发生以下情况之一时,会触发 'pause' 事件:
🌐 The 'pause' event is emitted when one of the following occur:
调用监听器函数时不传入任何参数。
🌐 The listener function is called without passing any arguments.
rl.on('pause', () => {
console.log('Readline paused.');
});