(object)
| 95 | const { isContext } = require('internal/vm'); |
| 96 | |
| 97 | function isModule(object) { |
| 98 | if (typeof object !== 'object' || object === null || !ObjectPrototypeHasOwnProperty(object, kWrap)) { |
| 99 | return false; |
| 100 | } |
| 101 | return true; |
| 102 | } |
| 103 | |
| 104 | function phaseEnumToPhaseName(phase) { |
| 105 | const phaseName = PHASE_MAP[phase]; |
no outgoing calls
no test coverage detected
searching dependent graphs…