Skip to content

Instantly share code, notes, and snippets.

@efekarakus
Created June 1, 2017 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efekarakus/1a475a322061b15bac4f3fe75906bb26 to your computer and use it in GitHub Desktop.
Save efekarakus/1a475a322061b15bac4f3fe75906bb26 to your computer and use it in GitHub Desktop.
Multiple Parameters vs. Closure 2
function getRecordedPromise(metricName) {
const metric = Metric.newTimedMetric(metricName);
return (promise) => {
return promise
.then(values => {
metric.emitSuccess();
return Promise.resolve(values);
})
.catch(reason => {
metric.emitFailure();
return Promise.reject(reason);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment