(url: string)
| 4 | import { Entry } from "har-format"; |
| 5 | |
| 6 | const isGraphQLURI = (url: string): boolean => |
| 7 | url.toLowerCase().endsWith("graphql"); |
| 8 | const isJSONFile = (url: string): boolean => |
| 9 | url.toLowerCase().endsWith(".json"); |
| 10 | const isValidURL = (url: string): boolean => { |