xp
xp
arr.join(','),split(','),sort((a,b) => a - b)
``` // tansform {a: number} & {b: string} -> {a: number, b: string} type IntersectionObj = { [P in keyof T]: T[P] } type PartialByKeys = IntersectionObj< { [P in...
https://github.com/openresty/test-nginx#installation There are various installation options here. ``` perl Makefile.PL make sudo make install ``` This worked for me, or you could try docker-openresty(https://github.com/openresty/docker-openresty)
``` type AppendToObject = { [P in keyof T]: T[P] } & { [K in U]: V } What go wrong?