mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-21 10:39:26 +08:00
a0f00e5017
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
10 lines
276 B
JavaScript
10 lines
276 B
JavaScript
var partial = require('./partial.js');
|
|
var delay = require('./delay.js');
|
|
var underscore = require('./underscore.js');
|
|
|
|
// Defers a function, scheduling it to run after the current call stack has
|
|
// cleared.
|
|
var defer = partial(delay, underscore, 1);
|
|
|
|
module.exports = defer;
|