Skip to content

Instantly share code, notes, and snippets.

@julesbou
Created March 11, 2016 15:59
Show Gist options
  • Save julesbou/1eaf32f703ad51889619 to your computer and use it in GitHub Desktop.
Save julesbou/1eaf32f703ad51889619 to your computer and use it in GitHub Desktop.
var expensiveFn = _.profile(function(profileId) {
var i = 0;
// expensive loop
while (i < 100) {
arr = _.range(0, 50 * 1000);
i++;
}
// expensive loop
while (i < 200) {
_.uniq(arr, 50 * 1000);
i++;
}
});
expensiveFn('123');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment