@hint/utils-string
v1.0.14
Published
utils for strings
Downloads
71,574
Readme
String utils (@hint/utils-string
)
Set of helpers to process string.
Installation
This package is installed automatically when adding webhint to your project so running the following is enough:
npm install hint --save-dev
Utils
cutString
: Cut a given string adding…
in the middle. variable available with the givenoptions
object.mergeIgnoreIncludeArrays
: Adds the items fromincludeArray
intooriginalArray
and removes the ones fromignoreArray
.normalizeIncludes
: Return if normalizedsource
string includes normalizedincluded
string.normalizeStringByDelimiter
: Normalize String and then replace characters with delimiter.normalizeString
: Remove whitespace from both ends of a string and lowercase it.prettyPrintArray
: Returns an array pretty printed.toCamelCase
: Convert '-' delimitered string to camel case name.toLowerCaseArray
: Lower cases all the items oflist
.toLowerCaseKeys
: Returns the same object but with all the properties lower cased.toPascalCase
: Convert '-' delimitered string to pascal case name.