lint: Require semicolons

This commit is contained in:
Cohee
2023-12-02 21:11:06 +02:00
parent 2ec14a59ee
commit c63cd87cc0
67 changed files with 1554 additions and 1552 deletions

View File

@ -46,7 +46,7 @@ export function guesstimate(str) {
async function loadTokenCache() {
try {
console.debug('Chat Completions: loading token cache')
console.debug('Chat Completions: loading token cache');
tokenCache = await objectStore.getItem('tokenCache') || {};
} catch (e) {
console.log('Chat Completions: unable to load token cache, using default value', e);
@ -56,7 +56,7 @@ async function loadTokenCache() {
export async function saveTokenCache() {
try {
console.debug('Chat Completions: saving token cache')
console.debug('Chat Completions: saving token cache');
await objectStore.setItem('tokenCache', tokenCache);
} catch (e) {
console.log('Chat Completions: unable to save token cache', e);