2021-03-27 22:45:57 +03:00

6 lines
100 B
JavaScript

// clean function
import del from 'del';
export const clean = async (path) => {
del.sync(path);
}