Files
2025-11-17 13:32:54 +08:00

8 lines
140 B
XML

function getFirstCharacter(str) {
return str.toString().substring(0, 1);
}
module.exports = {
getFirstCharacter: getFirstCharacter,
};