rdf-object
Advanced tools
Comparing version 1.4.1 to 1.4.2
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
<a name="v1.4.2"></a> | ||
## [v1.4.2](https://github.com/rubensworks/rdf-object.js/compare/v1.4.1...v1.4.2) - 2020-11-10 | ||
### Fixed | ||
* [Fix subClassOf being checked for wrong URI](https://github.com/rubensworks/rdf-object.js/commit/e3a3a7d97413ed7b59252b0d007805b76a12fe9a) | ||
<a name="v1.4.1"></a> | ||
@@ -5,0 +11,0 @@ ## [v1.4.1](https://github.com/rubensworks/rdf-object.js/compare/v1.4.0...v1.4.1) - 2020-11-04 |
@@ -49,3 +49,3 @@ "use strict"; | ||
return (this.propertiesUri['http://www.w3.org/1999/02/22-rdf-syntax-ns#type'] || []) | ||
.concat(this.propertiesUri['http://www.w3.org/1999/02/22-rdf-syntax-ns#subClassOf'] || []) | ||
.concat(this.propertiesUri['http://www.w3.org/2000/01/rdf-schema#subClassOf'] || []) | ||
.reduce((acc, superType) => acc || superType.isA(type), false); | ||
@@ -52,0 +52,0 @@ } |
{ | ||
"name": "rdf-object", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "Loads RDF as JSON objects", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
39709