UNPKG

215 BJavaScriptView Raw
1"use strict";
2function timeTaken(callback) {
3 console.time('timeTaken');
4 var r = callback();
5 console.timeEnd('timeTaken');
6 return r;
7}
8module.exports = timeTaken;
9//# sourceMappingURL=timeTaken.js.map
\No newline at end of file