1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1× | 'use strict'; const PrefixIndex = { 'dct': 'http://purl.org/dc/terms/', 'foaf': 'http://xmlns.com/foaf/0.1/', 'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#', 'rdfs': 'http://www.w3.org/2000/01/rdf-schema#', 'rel': 'http://www.perceive.net/schemas/relationship/', 'xsd': 'http://www.w3.org/2001/XMLSchema#' }; /** * Holds predefined prefix definitions for easy access * * @class PrefixIndex */ export default PrefixIndex; |