scramjet / src /client /dom /fontface.ts
soiz1's picture
Upload 150 files
bee6636 verified
raw
history blame contribute delete
290 Bytes
import { rewriteCss } from "../../shared/rewriters/css";
import { ScramjetClient } from "../client";
export default function (client: ScramjetClient, _self: Self) {
client.Proxy("FontFace", {
construct(ctx) {
ctx.args[1] = rewriteCss(ctx.args[1], client.meta);
},
});
}