Convert back to old common js

This commit is contained in:
J H
2024-02-08 13:35:56 -07:00
parent dc7a86a8e8
commit 17ec714277
7 changed files with 16 additions and 16 deletions

View File

@@ -2,7 +2,10 @@ import { Address } from "../types"
import { Host, PortOptions } from "./Host"
export class Origin<T extends Host> {
constructor(readonly host: T, readonly options: PortOptions) {}
constructor(
readonly host: T,
readonly options: PortOptions,
) {}
build({ username, path, search }: BuildOptions): Address {
const qpEntries = Object.entries(search)