(character, string)
| 9 | const config = require('../config/config'); |
| 10 | |
| 11 | function trimStart(character, string) { |
| 12 | let startIndex = 0; |
| 13 | |
| 14 | while (string[startIndex] === character) { |
| 15 | startIndex++; |
| 16 | } |
| 17 | |
| 18 | return string.substr(startIndex); |
| 19 | } |
| 20 | |
| 21 | const obj = { |
| 22 |
no outgoing calls
no test coverage detected