arrayRemoveItem
arrayRemoveItemRemoves provided element from an array.### Parameters array array* of strings | numbers to remove element from
arrayToString
arrayToStringConvert an array to a string and combine on the delimiter passed.### Parameters array array* to convert to string
browserDetect
browserDetectDetects browser being used.### Examples`javascript
colorBrightness
colorBrightnessBrightens or darkens a HEX color based on the amount specified. Behaves like the SASS lighen and darken.
guid
guidGenerates a GUID.### Examples`javascript
invertColor
invertColorInverts a HEX color.### Parameters hex string* hex color to convert### Examples`javascript
randomPastelColor
randomPastelColorGet a random pastel color.### Examples`javascript
readableBytes
readableBytesConverts a number of bytes to a human readable file size.### Parameters bytes number* of bytes to show
slugify
slugifyConverts a string into a slug for URL usage.### Parameters string string* to convert to slug### Examples`javascript
storageClear
storageClearRemoves all data stored in the local storage.### Examples`javascript
storageGet
storageGetRetrieves data from the local storage.### Parameters key string* to retrieve### Examples`javascript
storageRemove
storageRemoveRemoves an entry from the local storage.### Parameters key string* of the entry to remove### Examples`javascript
storageSet
storageSetStores data to the local storage.### Parameters key string* name of the entry
stringToArray
stringToArraySplits a string to an array based on the delimiter passed.### Parameters string string* to convert to array
toBoolean
toBooleanConverts any value to a Boolean equivalent.Note\['true', 'yes', 'y', '1'].### Parameters val any* value to check if true or false
toSentenceCase
toSentenceCaseConverts a string to Sentence case.### Parameters string string* to convert to Sentence case### Examples`javascript
toTitleCase
toTitleCaseConverts a string to a Title Case.### Parameters string string* to convert to Title Case### Examples`javascript