()
| 4 | import { isEnvTruthy } from '../../utils/envUtils.js' |
| 5 | |
| 6 | function isExtraUsageAllowed(): boolean { |
| 7 | if (isEnvTruthy(process.env.DISABLE_EXTRA_USAGE_COMMAND)) { |
| 8 | return false |
| 9 | } |
| 10 | return isOverageProvisioningAllowed() |
| 11 | } |
| 12 | |
| 13 | export const extraUsage = { |
| 14 | type: 'local-jsx', |
no test coverage detected