10 lines
122 B
JavaScript
10 lines
122 B
JavaScript
import { x } from 'tar';
|
|
|
|
async function untar(file, path) {
|
|
await x({
|
|
file,
|
|
C: path
|
|
});
|
|
}
|
|
|
|
export { untar };
|