ember-angle-bracket-invocation-polyfill
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -22,3 +22,7 @@ 'use strict'; | ||
return string.replace(/[A-Z]/g, function(char, index) { | ||
return (index !== 0 ? '-' : '') + char.toLowerCase(); | ||
if (index === 0 || !ALPHA.test(string[index - 1])) { | ||
return char.toLowerCase(); | ||
} | ||
return `-${char.toLowerCase()}`; | ||
}); | ||
@@ -25,0 +29,0 @@ } |
{ | ||
"name": "ember-angle-bracket-invocation-polyfill", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "The default blueprint for ember-cli addons.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
30044
607