API/api.medcify.app/node_modules/.bin/blessed

17 lines
301 B
Plaintext
Raw Normal View History

2022-09-26 06:11:44 +00:00
#!/usr/bin/env node
var blessed = require('../')
, argv = process.argv.slice(2)
, cmd = argv.shift()
, tput;
tput = blessed.tput({
terminal: process.env.TERM,
termcap: !!process.env.USE_TERMCAP,
extended: true
});
if (tput[cmd]) {
process.stdout.write(tput[cmd].apply(tput, argv));
}