sparqlxml-parse
Advanced tools
Comparing version 1.1.2 to 1.1.3
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
<a name="1.1.3"></a> | ||
## [1.1.3](https://github.com/rubensworks/sparqlxml-parse.js/compare/v1.1.2...v1.1.3) - 2018-09-21 | ||
- [Fix crash when bindings without children are present](https://github.com/rubensworks/sparqlxml-parse.js/commit/ed2e9ee1a75ed8a1a548020c02c35a36f9b4f76b) | ||
<a name="1.1.2"></a> | ||
## [1.1.2](https://github.com/rubensworks/sparqlxml-parse.js/compare/v1.1.1...v1.1.2) - 2018-09-05 | ||
- [Remove tslib dependency](https://github.com/rubensworks/sparqlxml-parse.js/commit/5a4243e22ac01dd3a9bb4e0dac3ff13b7d34ce67) | ||
<a name="1.1.1"></a> | ||
## [1.1.0](https://github.com/rubensworks/sparqlxml-parse.js/compare/v1.1.0...v1.1.1) - 2018-08-24 | ||
## [1.1.1](https://github.com/rubensworks/sparqlxml-parse.js/compare/v1.1.0...v1.1.1) - 2018-08-24 | ||
- [Check edge-cases for empty bindings and results](https://github.com/rubensworks/sparqlxml-parse.js/commit/031c30c93e6e2e3a56b1dd2cb47013a30344998e) | ||
@@ -7,0 +15,0 @@ - [Fix parsing error on single bindings](https://github.com/rubensworks/sparqlxml-parse.js/commit/79b5a5bcad0abd8080b3900e84ab4e956ad13940) |
@@ -54,3 +54,3 @@ "use strict"; | ||
for (const binding of bindingsArray) { | ||
if (binding.attribs) { | ||
if (binding.attribs && binding.children) { | ||
const key = binding.attribs.name; | ||
@@ -57,0 +57,0 @@ let value = null; |
{ | ||
"name": "sparqlxml-parse", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Parses SPARQL XML query results", | ||
@@ -42,3 +42,3 @@ "keywords": [ | ||
"streamify-string": "^1.0.1", | ||
"ts-jest": "^23.0.1", | ||
"ts-jest": "^23.10.0", | ||
"tslint": "^5.8.0", | ||
@@ -49,2 +49,7 @@ "tslint-eslint-rules": "^5.3.1", | ||
"jest": { | ||
"globals": { | ||
"ts-jest": { | ||
"tsConfig": "test/tsconfig.json" | ||
} | ||
}, | ||
"setupTestFrameworkScriptFile": "jest-rdf", | ||
@@ -51,0 +56,0 @@ "transform": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17136