(str, count)
| 128115 | } |
| 128116 | ts.getSnapshotText = getSnapshotText; |
| 128117 | function repeatString(str, count) { |
| 128118 | var result = ""; |
| 128119 | for (var i = 0; i < count; i++) { |
| 128120 | result += str; |
| 128121 | } |
| 128122 | return result; |
| 128123 | } |
| 128124 | ts.repeatString = repeatString; |
| 128125 | function skipConstraint(type) { |
| 128126 | return type.isTypeParameter() ? type.getConstraint() || type : type; |
no outgoing calls
no test coverage detected
searching dependent graphs…