Skip to content

Instantly share code, notes, and snippets.

View sakalx's full-sized avatar
:octocat:
🙃

Serhii Sakal sakalx

:octocat:
🙃
View GitHub Profile
@jonlabelle
jonlabelle / string-utils.js
Last active July 8, 2024 21:19
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();