| 30 | |
| 31 | // Helper function to pretty-print dates |
| 32 | const formatDate = date => { |
| 33 | const msSinceEpoch = parseInt(date.seconds, 10) * 1000; |
| 34 | return new Date(msSinceEpoch).toLocaleString('en-US'); |
| 35 | }; |
| 36 | |
| 37 | async function listInspectTemplates() { |
| 38 | // Construct template-listing request |
no outgoing calls
no test coverage detected