rdflib 2.2.25-a7342c1b → 2.2.25-e461ac30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rdflib.min.js.map +1 -1
- package/esm/serializer.js +0 -1
- package/lib/serializer.js +0 -2
- package/package.json +1 -1
- package/src/serializer.js +0 -1
package/esm/serializer.js
CHANGED
|
@@ -15,7 +15,6 @@ import * as Util from './utils-js';
|
|
|
15
15
|
import CanonicalDataFactory from './factories/canonical-data-factory';
|
|
16
16
|
import { createXSD } from './xsd';
|
|
17
17
|
import solidNs from 'solid-namespace';
|
|
18
|
-
// import * as jsonld from 'jsonld'
|
|
19
18
|
import * as ttl2jsonld from '@frogcat/ttl2jsonld';
|
|
20
19
|
export default function createSerializer(store) {
|
|
21
20
|
return new Serializer(store);
|
package/lib/serializer.js
CHANGED
package/package.json
CHANGED
package/src/serializer.js
CHANGED
|
@@ -12,7 +12,6 @@ import * as Util from './utils-js'
|
|
|
12
12
|
import CanonicalDataFactory from './factories/canonical-data-factory'
|
|
13
13
|
import { createXSD } from './xsd'
|
|
14
14
|
import solidNs from 'solid-namespace'
|
|
15
|
-
// import * as jsonld from 'jsonld'
|
|
16
15
|
import * as ttl2jsonld from '@frogcat/ttl2jsonld'
|
|
17
16
|
|
|
18
17
|
|