Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-rss-parser

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-rss-parser - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

2

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc