UNPKG

@solid-data-modules/rdflib-utils

Version:

Utility functions for the development of Solid Data Modules for RDFLib.js

8 lines (7 loc) 268 B
import { Fetcher, Node } from "rdflib"; /** * Nullsafe fetching of a node * @param fetcher - The fetcher to use * @param node - A node to fetch, or null to do nothing at all */ export declare function fetchNode(fetcher: Fetcher, node: Node | null): Promise<void>;