Files
cardBoard-wxapp/node_modules/tdesign-miniprogram/miniprogram_dist/indexes/indexes.wxs
T

12 lines
215 B
XML

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