driver-browser
Advanced tools
Comparing version 0.6.6 to 0.6.7
@@ -74,3 +74,3 @@ "use strict"; | ||
} else if (this.tagNamePrefix) { | ||
var tagNamePrefix = typeof this.tagNamePrefix === 'function' ? this.tagNamePrefix(component.type) : tagNamePrefix; | ||
var tagNamePrefix = typeof this.tagNamePrefix === 'function' ? this.tagNamePrefix(component.type) : this.tagNamePrefix; | ||
node = document.createElement(tagNamePrefix + component.type); | ||
@@ -77,0 +77,0 @@ } else { |
{ | ||
"name": "driver-browser", | ||
"version": "0.6.6", | ||
"version": "0.6.7", | ||
"description": "Browser driver for Rax", | ||
@@ -5,0 +5,0 @@ "license": "BSD-3-Clause", |
@@ -83,3 +83,3 @@ /** | ||
} else if (this.tagNamePrefix) { | ||
let tagNamePrefix = typeof this.tagNamePrefix === 'function' ? this.tagNamePrefix(component.type) : tagNamePrefix; | ||
let tagNamePrefix = typeof this.tagNamePrefix === 'function' ? this.tagNamePrefix(component.type) : this.tagNamePrefix; | ||
node = document.createElement(tagNamePrefix + component.type); | ||
@@ -86,0 +86,0 @@ } else { |
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
20672