react-native-rss-parser
Advanced tools
Comparing version 1.5.0 to 1.5.1
{ | ||
"name": "react-native-rss-parser", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "React Native compatible package to parse RSS feeds", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -31,3 +31,3 @@ exports.getElements = (node, tagName) => { | ||
exports.getElementTextContentArray = (node, tagName, namespace) => { | ||
const nodes = this.getChildElements(node, tagName, namespace); | ||
const nodes = exports.getChildElements(node, tagName, namespace); | ||
@@ -42,5 +42,5 @@ if (!nodes || nodes.length === 0) { | ||
exports.getElementTextContent = (node, tagName, namespace) => { | ||
const array = this.getElementTextContentArray(node, tagName, namespace); | ||
const array = exports.getElementTextContentArray(node, tagName, namespace); | ||
return array.length === 0 ? undefined : array[0]; | ||
}; |
@@ -158,2 +158,6 @@ # react-native-rss-parser | ||
### 1.5.1 | ||
- Bug Fix: \_this.getElementTextContentArray is not a function [issue #16](https://github.com/jameslawler/react-native-rss-parser/issues/16) (thanks to julianbragachi) | ||
### 1.5.0 | ||
@@ -160,0 +164,0 @@ |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
26054
193
0