IOweb/node_modules/@iconify/tools/lib/download/helpers/untar.mjs
2026-07-03 15:07:38 -05:00

10 lines
122 B
JavaScript

import { x } from 'tar';
async function untar(file, path) {
await x({
file,
C: path
});
}
export { untar };