pivot/other/repl.js
2020-06-12 17:13:11 -06:00

12 lines
233 B
JavaScript

const rl = require('readline-sync');
function repl(prompt, func) {
let answer;
while (answer != 'exit') {
answer = rl.question(prompt);
if (answer == 'exit')
continue;
func(answer);
}
}
module.exports = repl;