You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
438 B
12 lines
438 B
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.serializedToQuads = serializedToQuads;
|
|
const n3_1 = require("n3");
|
|
async function serializedToQuads(data, options) {
|
|
if (options && options.format === "application/ld+json") {
|
|
throw new Error("Not Implemented");
|
|
}
|
|
const parser = new n3_1.Parser(options);
|
|
return parser.parse(data);
|
|
}
|
|
//# sourceMappingURL=serializedToQuads.js.map
|