Skip to content

Instantly share code, notes, and snippets.

View rossbu's full-sized avatar

ShareForEver rossbu

View GitHub Profile
@jonlabelle
jonlabelle / string-utils.js
Last active July 6, 2024 14:18
Useful collection of JavaScript string utilities.
// String utils
//
// resources:
// -- mout, https://github.com/mout/mout/tree/master/src/string
/**
* "Safer" String.toLowerCase()
*/
function lowerCase(str) {
return str.toLowerCase();