just-kebab-case
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -21,6 +21,9 @@ module.exports = kebabCase; | ||
//replace capitals with space + lower case equivalent for later parsing | ||
str = str.replace(capitals, function (match) { | ||
str = str.replace(capitals, function(match) { | ||
return ' ' + (match.toLowerCase() || match); | ||
}); | ||
return str.trim().split(wordSeparators).join('-'); | ||
return str | ||
.trim() | ||
.split(wordSeparators) | ||
.join('-'); | ||
} |
{ | ||
"name": "just-kebab-case", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "convert a string to kebab case", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
3281
4
25