9 lines
125 B
XML

var common = {
strSlice: function (_num) {
return _num.slice(0,10)
}
}
module.exports = {
str: common.strSlice,
}