Nicolas Froidure
Nicolas Froidure
Imo, that's not a bad thing. Using a context object or ES6 destructuring can avoid complex functions signatures. Also, adding memoization features would make React slower for everyone and encourage...
I think, it is, until you wrap it into a lib ;). What you call a boilerplate is for me just a realization of a pattern. Here is an example...
Lazy computing could be achieved with proxys / getters/setters. To avoid extra code you also could isolate all the caching context related code into a separated module in order to...
:+1: This API looks nicer, hope to see it shipped soon :-)
By the way, instead of conditionnally load the entire application, a $gmap service could expose a promise indicating if the gmap API is available: Something like: ``` js angular.module('ui.map.services') .service('uiGmap',...
Not sure if it worth currying by default since most people would rather use their own library for it. Some libraries like R also allow to flip arguments etc. It...
Finally created https://github.com/nfroidure/schema2dts. Till have to check 3.1 features and implement it.
The schema validator may be changed for https://github.com/IBM/openapi-validator/issues/545 to move forward on this long running issue.
Also check for CloudFront : https://github.com/DefinitelyTyped/DefinitelyTyped/blob/4e78c523d1d7be08dfe6c47ef84b473eaacc98f8/types/aws-lambda/common/cloudfront.d.ts
Well, this is probably not a good idea since the API templates ain't deterministic for routers. For example, a template like `/{foo}{bar}` is valid but it is not possible to...