8 lines
140 B
Plaintext
Raw Normal View History

2025-04-28 09:21:04 +08:00
function getFirstCharacter(str) {
return str.toString().substring(0, 1);
}
module.exports = {
getFirstCharacter: getFirstCharacter,
};