helperStringSubstring.js 128 B

12345
  1. function helperStringSubstring (str, start, end) {
  2. return str.substring(start, end)
  3. }
  4. module.exports = helperStringSubstring