django-vue3-admin-web/node_modules/xe-utils/helperStringSubstring.js
2025-10-20 21:21:14 +08:00

6 lines
133 B
JavaScript

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