10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import getSolidpkg from './getSolidpkg';
|
|
import readSolidpkg from './readSolidpkg';
|
|
|
|
(async () => {
|
|
const buffer = await getSolidpkg('assets_swtor_de_de', -1, 0);
|
|
console.log(buffer.length, buffer);
|
|
|
|
const output = readSolidpkg(buffer);
|
|
console.log(output);
|
|
})();
|