Small wget like mirroring utility.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Auto-register last-indexed decorator on import

rektide f2be6bd7 4a44c207

+3
+3
src/decorator/last-indexed.ts
··· 1 1 import { HTMLRewriter } from "html-rewriter-wasm"; 2 2 import { Decorator, DecoratorResult } from "../decorate/types.ts"; 3 + import { decorators } from "../decorate/registry.ts"; 3 4 4 5 export const lastIndexedDecorator: Decorator = { 5 6 name: "last-indexed", ··· 27 28 }; 28 29 }, 29 30 }; 31 + 32 + decorators.set(lastIndexedDecorator.name, lastIndexedDecorator);