Adrian Miranda
Results
2
comments of
Adrian Miranda
https://github.com/adriancmiranda/OpenFB
Probably the assign contract for the `es2015.core` `ObjectConstructor` should be something like: ```ts export function assign(target: T, source: U): asserts target is T & U { Object.assign(target, source); } ```...