Source Code: lib/readline.js The node:readline module provides an interface for reading data from a Readable stream (such as process.stdin) one line at a time. To use the promise-based APIs: import * as readline from 'node:readline/promises';const readline = require('node:readline/promises');copy To use the callback and sync APIs: import * as readline from 'node:readline';const readline = require(