blob: 989d1631494c1665bdab749749088ac2bc54c299 (
plain) (
blame)
1
2
3
4
5
6
|
import type { URL } from "node:url";
import createUrl from "./createUrl.js";
export default function schema(type: string | URL): URL {
return createUrl(type, "http://schema.org/");
}
|