Guest User

Untitled

a guest
Jan 23rd, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <% # XXX PROFILING %>
  2. <% begin = Date.now() %>
  3.  
  4. <!-- ... -->
  5.  
  6. <% for category in categories: %>
  7.  
  8. <!-- ... -->
  9.  
  10. <% # XXX PROFILING %>
  11. <% beginCategory = Date.now() %>
  12.  
  13. <% for thing in things: %>
  14. <%- @partial 'partials/thing', {thing} %>
  15. <% end %>
  16.  
  17. <% # XXX PROFILING %>
  18. <% time = Date.now() - beginCategory %>
  19. <% console.log "#{things.length} thing partials rendered in #{time} ms\n" %>
  20.  
  21. <!-- ... -->
  22.  
  23. <% end %>
  24.  
  25. <!-- ... -->
Add Comment
Please, Sign In to add comment