Files
2025-11-28 16:49:36 +08:00

8 lines
140 B
XML

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