UNPKG

aoc-automation

Version:

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

8 lines (5 loc) 147 B
import fs from "fs"; const copy = (fromDir: string, toDir: string) => { fs.cpSync(fromDir, toDir, { recursive: true }); }; export default copy;