mirror of
https://github.com/azure/login.git
synced 2026-06-06 16:47:08 +00:00
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
define(['./underscore', './partial', './delay'], function (underscore, partial, delay) {
|
|
|
|
// Defers a function, scheduling it to run after the current call stack has
|
|
// cleared.
|
|
var defer = partial(delay, underscore, 1);
|
|
|
|
return defer;
|
|
|
|
});
|