(target, source)
| 347 | } |
| 348 | |
| 349 | function copyOwnProperties(target, source) { |
| 350 | ArrayPrototypeForEach( |
| 351 | ReflectOwnKeys(source), |
| 352 | (prop) => { |
| 353 | const desc = ReflectGetOwnPropertyDescriptor(source, prop); |
| 354 | ObjectDefineProperty(target, prop, desc); |
| 355 | }); |
| 356 | } |
| 357 | |
| 358 | function aliasProperties(target, mapping) { |
| 359 | ArrayPrototypeForEach(ObjectKeys(mapping), (key) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…