(name: string)
| 270 | * @internal |
| 271 | */ |
| 272 | export function isVirtualPropName(name: string): boolean { |
| 273 | return VIRTUAL_PROP_NAMES.includes(name as any) |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * Checks whether a property path references a virtual property. |
no outgoing calls
no test coverage detected