lemonadejs
Advanced tools
Comparing version 3.0.4 to 3.0.5
@@ -822,2 +822,11 @@ /** | ||
// Make sure all uppercase | ||
if (typeof(components) === 'object') { | ||
let k = Object.keys(components); | ||
// Make sure they follow the standard | ||
for (let i = 0; i < k.length; i++) { | ||
components[k[i].toUpperCase()] = components[k[i]]; | ||
} | ||
} | ||
// Parse a HTML template | ||
@@ -824,0 +833,0 @@ if (! isDOM(t)) { |
@@ -834,2 +834,11 @@ /** | ||
// Make sure all uppercase | ||
if (typeof(components) === 'object') { | ||
let k = Object.keys(components); | ||
// Make sure they follow the standard | ||
for (let i = 0; i < k.length; i++) { | ||
components[k[i].toUpperCase()] = components[k[i]]; | ||
} | ||
} | ||
// Parse a HTML template | ||
@@ -836,0 +845,0 @@ if (! isDOM(t)) { |
@@ -25,3 +25,3 @@ { | ||
"types": "dist/lemonade.d.ts", | ||
"version": "3.0.4" | ||
"version": "3.0.5" | ||
} |
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
79959
1934