@virtualstate/app-history
Version:
Native JavaScript [app-history](https://github.com/WICG/app-history) implementation
13 lines (12 loc) • 503 B
text/typescript
import {AppHistoryAssertFn, assertAppHistory} from "./app-history";
try {
const { AppHistory } = (await import("@virtualstate/app-history-imported")) ?? { AppHistory: undefined };
if (AppHistory) {
const input = () => new AppHistory();
const fn: AppHistoryAssertFn = await assertAppHistory(input);
fn(input);
console.log(`PASS assertAppHistory:imported:new AppHistory`);
}
} catch {
console.warn(`WARN FAILED assertAppHistory:imported:new AppHistory`);
}