UNPKG

182 BJavaScriptView Raw
1#!/usr/bin/env/node
2'use strict'
3
4const filecopy = require('filecopy')
5
6filecopy('src/some-text01.txt', 'dest/some-text01-copy.txt', {
7 mkdirp: true
8}).then(() => {
9 /* ... */
10});