8 lines
140 B
XML
8 lines
140 B
XML
function getFirstCharacter(str) {
|
|
return str.toString().substring(0, 1);
|
|
}
|
|
|
|
module.exports = {
|
|
getFirstCharacter: getFirstCharacter,
|
|
};
|