Skip to content

Instantly share code, notes, and snippets.

View aslanon's full-sized avatar
🎸
Focusing

Onur Aslan aslanon

🎸
Focusing
View GitHub Profile
@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