(array)
| 1 | const { utils } = require('../utils'); |
| 2 | |
| 3 | function last(array) { |
| 4 | return array.length > 0 ? array[array.length - 1] : null; |
| 5 | } |
| 6 | |
| 7 | const states = { |
| 8 | trackIdentifiers: 'trackIdentifiers', |
no outgoing calls
no test coverage detected
searching dependent graphs…