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