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/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
@@ -28,8 +28,6 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
28
28
  ** Licence: MIT
29
29
  */
30
30
 
31
- // import * as jsonld from 'jsonld'
32
-
33
31
  function createSerializer(store) {
34
32
  return new Serializer(store);
35
33
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rdflib",
3
3
  "description": "an RDF library for node.js. Suitable for client and server side.",
4
- "version": "2.2.25-a7342c1b",
4
+ "version": "2.2.25-e461ac30",
5
5
  "private": false,
6
6
  "browserslist": [
7
7
  "> 0.5%"
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