chore(lint): fix lint issues (#3743)

Co-authored-by: Nate Moore <nate@astro.build>
This commit is contained in:
Nate Moore 2022-06-28 08:39:10 -05:00 committed by GitHub
parent 768c8ed21d
commit 53bf0be280
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ import { TEMPLATES } from './templates.js';
function wait(ms: number) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
function logAndWait(message: string, ms: number = 100) {
function logAndWait(message: string, ms = 100) {
console.log(message);
return wait(ms);
}

View file

@ -1,4 +1,4 @@
/// <reference path="../@types/network-information.d.ts" />
import "../@types/network-information.d.ts";
import throttles from 'throttles';
import requestIdleCallback from './requestIdleCallback.js';
@ -53,7 +53,7 @@ async function preloadHref(link: HTMLAnchorElement) {
const html = parser.parseFromString(contents, 'text/html');
const styles = Array.from(html.querySelectorAll<HTMLLinkElement>('link[rel="stylesheet"]'));
await Promise.all(styles.map(({ href }) => fetch(href)));
await Promise.all(styles.map((el) => fetch(el.href)));
} catch {}
}