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.

12 lines (9 loc) 235 B
const ncp = require('ncp'); const { promisify } = require('util'); const copy = promisify(ncp); async function copyFile(source, target) { return copy(source, target, { clobber: false, }); } module.exports = copyFile;