We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533e8d8 commit 1463cabCopy full SHA for 1463cab
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# jsonld ChangeLog
2
3
+### Fixed
4
+- Fix fromRdf with input triple having a nil subject.
5
+
6
## 0.5.17 - 2018-01-25
7
8
### Changed
lib/fromRdf.js
@@ -184,6 +184,9 @@ api.fromRDF = async (
184
185
// iterate backwards through each RDF list
186
const nil = graphObject[RDF_NIL];
187
+ if(!nil.usages) {
188
+ continue;
189
+ }
190
for(let usage of nil.usages) {
191
let node = usage.node;
192
let property = usage.property;
0 commit comments