mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +00:00
17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
|
'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.
|
||
|
*/
|
||
|
function isFirstLetterCapitalized(word) {
|
||
|
if (!word) {
|
||
|
return false;
|
||
|
}
|
||
|
const firstLetter = word.charAt(0);
|
||
|
return firstLetter.toUpperCase() === firstLetter;
|
||
|
}
|
||
|
|
||
|
module.exports = isFirstLetterCapitalized;
|