6 lines
133 B
JavaScript
6 lines
133 B
JavaScript
function helperStringSubstring (str, start, end) {
|
|
return str.substring(start, end)
|
|
}
|
|
|
|
module.exports = helperStringSubstring
|