7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
|
import getFileContents from './getFileContents';
|
||
|
|
||
|
(async () => {
|
||
|
const buffer = await getFileContents('assets_swtor_de_de', -1, 0);
|
||
|
console.log(buffer.length, buffer);
|
||
|
})();
|