feedparser
Advanced tools
Comparing version 0.9.4 to 0.9.5
@@ -661,7 +661,10 @@ /********************************************************************** | ||
self.meta['#ns'] = []; | ||
self.meta['@'] = []; | ||
Object.keys(n['@']).forEach(function(name) { | ||
var o = {}; | ||
o[name] = n['@'][name]; | ||
if (name.indexOf('xmlns') == 0) { | ||
var o = new Object; | ||
o[name] = n['@'][name]; | ||
self.meta['#ns'].push(o); | ||
} else if (name != 'version') { | ||
self.meta['@'].push(o); | ||
} | ||
@@ -668,0 +671,0 @@ }); |
@@ -5,3 +5,3 @@ { | ||
"description": "Robust RSS, Atom, and RDF feed parsing using sax js", | ||
"version": "0.9.4", | ||
"version": "0.9.5", | ||
"repository": { | ||
@@ -8,0 +8,0 @@ "type": "git", |
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
831
43175
11