semicolons

This commit is contained in:
Toshit Chawda 2024-07-14 16:31:36 -07:00
parent 56767f5b31
commit 4906b71e47
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
37 changed files with 789 additions and 784 deletions

View file

@ -1,15 +1,15 @@
import { locationProxy } from "./location"
import { windowProxy } from "./window"
import { locationProxy } from "./location";
import { windowProxy } from "./window";
function scope(identifier: any) {
if (identifier instanceof Window) {
return windowProxy
return windowProxy;
} else if (identifier instanceof Location) {
return locationProxy
return locationProxy;
}
return identifier
return identifier;
}
// shorthand because this can get out of hand reall quickly
window.$s = scope
window.$s = scope;