Skip to content

Instantly share code, notes, and snippets.

View joshuacoda's full-sized avatar

Joshua William Coda joshuacoda

View GitHub Profile
@joshuacoda
joshuacoda / string-utils.js
Created April 14, 2020 23:31 — forked from jonlabelle/string-utils.js
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();