feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
16
api.hyungi.net/node_modules/blessed/bin/tput.js
generated
vendored
Normal file
16
api.hyungi.net/node_modules/blessed/bin/tput.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/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));
|
||||
}
|
||||
Reference in New Issue
Block a user