(str, start)
| 13 | } |
| 14 | |
| 15 | function startsWith (str, start) { |
| 16 | return (str.substring(0, start.length) === start) |
| 17 | } |
| 18 | |
| 19 | describe('Functionality', function () { |
| 20 | var cleanup = [] |
no outgoing calls
no test coverage detected
searching dependent graphs…