Files
2025-10-01 10:01:52 +08:00

8 lines
140 B
XML

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