Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/helperStringSubstring.js
2024-12-05 09:33:18 +08:00

6 lines
128 B
JavaScript

function helperStringSubstring (str, start, end) {
return str.substring(start, end)
}
module.exports = helperStringSubstring