UNPKG

much

Version:

Pager with depth support for JavaScript source code

17 lines (11 loc) 249 B
'use strict'; var blessed = require('blessed'); module.exports = function (screen, opts) { var input = blessed.textbox(opts); input.key('backspace', function () { if (!input.value) { input.cancel(); } }); return input; };