ssn/src/installPatch.ts
2018-06-21 22:39:15 +02:00

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);
})();