6 lines
100 B
JavaScript
6 lines
100 B
JavaScript
// clean function
|
|
import del from 'del';
|
|
|
|
export const clean = async (path) => {
|
|
del.sync(path);
|
|
} |