()
| 17 | module.exports = ObjectFreeze({ |
| 18 | __proto__: null, |
| 19 | isEnabled() { |
| 20 | if (_permission === undefined) { |
| 21 | const { getOptionValue } = require('internal/options'); |
| 22 | _permission = getOptionValue('--permission') || getOptionValue('--permission-audit'); |
| 23 | } |
| 24 | return _permission; |
| 25 | }, |
| 26 | isAuditMode() { |
| 27 | if (_audit === undefined) { |
| 28 | const { getOptionValue } = require('internal/options'); |
no test coverage detected
searching dependent graphs…