Skip to content

Instantly share code, notes, and snippets.

@aslanon
aslanon / text.transform.js
Last active March 22, 2020 14:37
String transform
/**
* To capitalize
* @param {String} string
* return example text -> Example text
*/
const capitalize = string =>
string && string.charAt(0).toUpperCase() + string.slice(1);
/**
* To camel case