( env: Readonly<Record<string, string | undefined>> = process.env, )
| 50 | }; |
| 51 | |
| 52 | export const isAnalyticsDisabled = ( |
| 53 | env: Readonly<Record<string, string | undefined>> = process.env, |
| 54 | ): boolean => truthy(env.DO_NOT_TRACK) || truthy(env.EXECUTOR_DISABLE_ANALYTICS); |
| 55 | |
| 56 | // --------------------------------------------------------------------------- |
| 57 | // Service |
no test coverage detected