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

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.
Cool, I never knew that