UNPKG

@jahed/sparql-engine

Version:

SPARQL query engine for servers and web browsers.

11 lines 269 B
// SPDX-License-Identifier: MIT import { Consumable } from "./consumer.js"; /** * A Consumer that does nothing */ export default class NoopConsumer extends Consumable { execute() { return Promise.resolve(); } } //# sourceMappingURL=nop-consumer.js.map