@bahulneel/rdflib
Version:
an RDF library for node.js. Suitable for client and server side.
27 lines (23 loc) • 746 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Feature = void 0;
/** A set of features that may be supported by a Data Factory */
var Feature;
/**
* Defines a DataFactory as used in rdflib, based on the RDF/JS: Data model specification,
* but with additional extensions
*
* bnIndex is optional but useful.
*/
exports.Feature = Feature;
(function (Feature) {
Feature["collections"] = "COLLECTIONS";
Feature["defaultGraphType"] = "DEFAULT_GRAPH_TYPE";
Feature["equalsMethod"] = "EQUALS_METHOD";
Feature["id"] = "ID";
Feature["identity"] = "IDENTITY";
Feature["reversibleId"] = "REVERSIBLE_ID";
Feature["variableType"] = "VARIABLE_TYPE";
})(Feature || (exports.Feature = Feature = {}));