import { copyFile, constants } from "fs/promises"; export default class CopyTransformer { static async build(inputPath, outputPath) { await copyFile(inputPath, outputPath, constants.COPYFILE_FICLONE); } }