/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/eslint-plugin-react/lib/util/isFirstLetterCapitalized.js
14 строк
387 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
'use strict'; /** * Check if the first letter of a string is capitalized. * @param {string} word String to check * @returns {boolean} True if first letter is capitalized. */ module.exports = function isFirstLetterCapitalized(word) { if (!word) { return false; } const firstLetter = word.replace(/^_+/, '').charAt(0); return firstLetter.toUpperCase() === firstLetter; };