2018-06-21 21:52:56 +02:00
|
|
|
import getSolidpkg from './getSolidpkg';
|
2018-06-21 22:39:15 +02:00
|
|
|
import readSolidpkg from './readSolidpkg';
|
2018-06-21 21:26:29 +02:00
|
|
|
|
|
|
|
(async () => {
|
2018-06-21 21:52:56 +02:00
|
|
|
const buffer = await getSolidpkg('assets_swtor_de_de', -1, 0);
|
2018-06-21 21:26:29 +02:00
|
|
|
console.log(buffer.length, buffer);
|
2018-06-21 22:39:15 +02:00
|
|
|
|
|
|
|
const output = readSolidpkg(buffer);
|
|
|
|
console.log(output);
|
2018-06-21 21:26:29 +02:00
|
|
|
})();
|