ssn/src/installPatch.ts

7 lines
178 B
TypeScript
Raw Normal View History

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