UNPKG

aoc-automation

Version:

Advent of Code tool to automate the repetitive parts of AoC.

9 lines (8 loc) 172 B
import fs from "fs"; const copy = (fromDir, toDir) => { fs.cpSync(fromDir, toDir, { recursive: true }); }; var copy_default = copy; export { copy_default as default };