[ci] format

This commit is contained in:
bluwy 2023-09-12 09:58:47 +00:00 committed by astrobot-houston
parent 644825845c
commit 4105491732

View file

@ -42,8 +42,5 @@ function isStyle(node: Node): node is HTMLStyleElement {
}
function isViteInjectedStyle(node: Node): node is HTMLStyleElement {
return (
isStyle(node) &&
!!node.getAttribute('data-vite-dev-id')
);
return isStyle(node) && !!node.getAttribute('data-vite-dev-id');
}