(array)
| 1325 | } |
| 1326 | ts.lastOrUndefined = lastOrUndefined; |
| 1327 | function last(array) { |
| 1328 | ts.Debug.assert(array.length !== 0); |
| 1329 | return array[array.length - 1]; |
| 1330 | } |
| 1331 | ts.last = last; |
| 1332 | /** |
| 1333 | * Returns the only element of an array if it contains only one element, `undefined` otherwise. |
nothing calls this directly
no test coverage detected
searching dependent graphs…