Update readme and add myself page

Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
This commit is contained in:
Al Asad Nur Riyad
2023-05-04 01:50:28 +06:00
parent d72d852552
commit eece29af28
29 changed files with 3515 additions and 1434 deletions

View File

@@ -1,5 +1,6 @@
export const makeFirstCharUpper = (val: string) => {
if (val === '') return val
export function makeFirstCharUpper(val: string) {
if (val === '')
return val
const firstChar = val.at(0)?.toLocaleUpperCase() || ''
const otherChar = val.slice(1)
return firstChar + otherChar