/**
* Nullsafe fetching of a node
* @paramfetcher - The fetcher to use
* @paramnode - A node to fetch, or null to do nothing at all
*/exportasyncfunctionfetchNode(fetcher, node) {
if (node) {
await fetcher.load(node.value);
}
}
//# sourceMappingURL=fetchNode.js.map