Files
YouTube.js/src/utils/index.ts
Luan cf29664d37 perf(general): Add session cache and LZW compression (#663)
* feat(utils): Implement LZW compression module

* feat(Session): Implement cache for sessions
This should improve performance quite a bit for those who are not using the `generate_session_locally` option (like me :P).

* refactor(Player): Add LZW compression
This considerably reduces the size of the cache.
2024-06-03 18:21:48 -03:00

16 lines
462 B
TypeScript

export { default as UniversalCache } from './Cache.js';
export * as Constants from './Constants.js';
export { default as EventEmitter } from './EventEmitterLike.js';
export * as FormatUtils from './FormatUtils.js';
export { default as HTTPClient } from './HTTPClient.js';
export * from './HTTPClient.js';
export { Platform } from './Utils.js';
export * as Utils from './Utils.js';
export { default as Log } from './Log.js';
export * as LZW from './LZW.js';