(node)
| 7 | const assertModuleSpecifier = '/^(node:)?assert(.strict)?$/'; |
| 8 | |
| 9 | const isObjectKeysOrEntries = (node) => |
| 10 | node.type === 'CallExpression' && |
| 11 | node.callee.type === 'MemberExpression' && |
| 12 | node.callee.object.type === 'Identifier' && |
| 13 | node.callee.object.name === 'Object' && |
| 14 | node.callee.property.type === 'Identifier' && |
| 15 | ['keys', 'entries'].includes(node.callee.property.name); |
| 16 | |
| 17 | const isPromiseAllCallArg = (node) => |
| 18 | node.parent?.type === 'CallExpression' && |
no test coverage detected