eyeling 1.22.9 → 1.22.10
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/eyeling.js +2 -1
- package/package.json +1 -1
package/eyeling.js
CHANGED
|
@@ -842,7 +842,8 @@ function __existentializeBlankTerm(t, mapping, varGen, localBlankLabels) {
|
|
|
842
842
|
}
|
|
843
843
|
|
|
844
844
|
function __existentializeBlankTriples(rawGraphOrTriples, varGen) {
|
|
845
|
-
const triples =
|
|
845
|
+
const triples =
|
|
846
|
+
rawGraphOrTriples instanceof GraphTerm ? Array.from(rawGraphOrTriples.triples) : Array.from(rawGraphOrTriples);
|
|
846
847
|
const localBlankLabels =
|
|
847
848
|
rawGraphOrTriples instanceof GraphTerm &&
|
|
848
849
|
Object.prototype.hasOwnProperty.call(rawGraphOrTriples, '__quotedLocalBlankLabels') &&
|