Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/helperStringSubstring.js

6 lines
128 B
JavaScript
Raw Normal View History

2024-12-03 17:40:13 +08:00
function helperStringSubstring (str, start, end) {
return str.substring(start, end)
}
module.exports = helperStringSubstring