Skip to content

Commit a51584f

Browse files
author
Tim Berners-Lee
committedApr 30, 2021
Disable Store fetures by default
1 parent 1aeeb2e commit a51584f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎src/store.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,11 @@ export default class IndexedFormula extends Formula { // IN future - allow pass
195195
this.whyIndex
196196
]
197197
this.namespaces = {} // Dictionary of namespace prefixes
198-
this.features = features || [
199-
'sameAs',
200-
'InverseFunctionalProperty',
201-
'FunctionalProperty',
198+
this.features = features || [ // By deafult devs do not expect these feaures.
199+
// See https://github.com/linkeddata/rdflib.js/issues/458
200+
// 'sameAs',
201+
// 'InverseFunctionalProperty',
202+
// 'FunctionalProperty',
202203
]
203204
this.rdfArrayRemove = opts.rdfArrayRemove || RDFArrayRemove
204205
if (opts.dataCallback) {

0 commit comments

Comments
 (0)
Please sign in to comment.