UNPKG

@stevescruz/task-master

Version:

A command-line todo list that allows you to write your tasks, set priorities, view existing tasks and view the next tasks due.

7 lines (5 loc) 180 B
function joinInput(cliInput, separator) { const isArray = Array.isArray(cliInput); return isArray ? cliInput.join(separator) : cliInput; } module.exports = joinInput;