/
githubmirror
/
gulp
Обзор
Документация
Войти
/
githubmirror
/
gulp
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.5
lib/completion.js
16 строк
464 B
Contra
clean up jshint comments
17 янв 2014, 14:03
17 янв 2014, 14:03
fdf3514
Код
Авторство
О чём код?
'use strict'; var fs = require('fs'); var path = require('path'); module.exports = function(name) { if (typeof name !== 'string') throw new Error('Missing completion type'); var file = path.join(__dirname, '../completion', name); try { console.log(fs.readFileSync(file, 'utf8')); process.exit(0); } catch (err) { console.log('echo "Specified gulp shell auto-completion rules for \''+name+'\' not found"'); process.exit(5); } };