You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 9, 2024. It is now read-only.
When linting for the old pattern in the AMP codebase, I'm frequently finding that the call expressions take parameters:
returnPromise.resolve(fn(arg))
To requires a lot of either binding, or wrapping the function in an arrow closure. Would it be more performant for implementations to take these parameters in the call to Promise.try?
// variadic args after the fnreturnPromise.try(fn,arg);