google-search-parser2
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "google-search-parser2", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "Parse image and Knowledge Graph data from Google Search results", | ||
@@ -5,0 +5,0 @@ "main": "parser.js", |
@@ -79,3 +79,3 @@ var htmlparser = require("htmlparser2"); | ||
onopentag: function (name, attribs) { | ||
if (name === "div" && attribs.class === "rg_meta") { | ||
if (name === "div" && attribs.class && attribs.class.includes("rg_meta")) { | ||
isInsideMetaTag = true; | ||
@@ -82,0 +82,0 @@ } |
@@ -0,0 +0,0 @@ /*global describe, it, expect, jasmine */ |
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
10909