(message: string)
| 60 | const __DEV__ = process.env.NODE_ENV !== 'production'; |
| 61 | |
| 62 | export const logError = (message: string) => { |
| 63 | console.error(`[@googlemaps/js-api-loader] ${message}`); |
| 64 | }; |
| 65 | |
| 66 | export const logDevWarning = __DEV__ |
| 67 | ? (message: string) => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…