sitemap-stream-parser
Advanced tools
Comparing version 1.1.3 to 1.2.0
@@ -31,5 +31,5 @@ // Generated by CoffeeScript 1.10.0 | ||
sitemapParser = (function() { | ||
function sitemapParser(url_cb1, sitemap_cb) { | ||
function sitemapParser(url_cb1, sitemap_cb1) { | ||
this.url_cb = url_cb1; | ||
this.sitemap_cb = sitemap_cb; | ||
this.sitemap_cb = sitemap_cb1; | ||
this.parse = bind(this.parse, this); | ||
@@ -109,2 +109,7 @@ this.visited_sitemaps = {}; | ||
exports.parseSitemap = function(url, url_cb, sitemap_cb, done) { | ||
sitemapParser = new sitemapParser(url_cb, sitemap_cb); | ||
return sitemapParser.parse(url, done); | ||
}; | ||
exports.parseSitemaps = function(urls, url_cb, done) { | ||
@@ -111,0 +116,0 @@ var queue; |
{ | ||
"name": "sitemap-stream-parser", | ||
"version": "1.1.3", | ||
"version": "1.2.0", | ||
"description": "Get a list of URLs from one or more sitemaps", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
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
19897
125