source: frontend/node_modules/underscore/amd/defer.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 245 bytes
Line 
1define(['./partial', './delay', './underscore'], function (partial, delay, underscore) {
2
3 // Defers a function, scheduling it to run after the current call stack has
4 // cleared.
5 var defer = partial(delay, underscore, 1);
6
7 return defer;
8
9});
Note: See TracBrowser for help on using the repository browser.