UNPKG

@eagleoutice/flowr

Version:

Static Dataflow Analyzer and Program Slicer for the R Programming Language

15 lines 400 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.quitCommand = void 0; const log_1 = require("../../../util/log"); exports.quitCommand = { description: 'End the repl', aliases: ['q', 'exit'], usageExample: ':quit', script: false, fn: () => { log_1.log.info('bye'); process.exit(0); } }; //# sourceMappingURL=repl-quit.js.map