Y
Hacker News
new
|
ask
|
show
|
jobs
by
monus21
1809 days ago
My one annoyance with these is that they aren't supported in Typescript i.e no return types.
1 comments
ash_gti
1809 days ago
If you enable strict (
https://www.typescriptlang.org/tsconfig#strict
) or use the `strictBindCallApply` flag (
https://www.typescriptlang.org/tsconfig#strictBindCallApply
) it should check the types on call, bind and apply.
link
monus21
1809 days ago
Cool, I never knew that
link