(timestamp1, timestamp2)
| 12 | } |
| 13 | |
| 14 | async function timeDifference(timestamp1, timestamp2) { |
| 15 | var difference = timestamp1 - timestamp2; |
| 16 | return difference; |
| 17 | } |
| 18 | |
| 19 | function convertHex(hexx) { |
| 20 | var hex = hexx.toString(); //force conversion |
nothing calls this directly
no outgoing calls
no test coverage detected