ship-gis/node_modules/underscore/amd/defer.js

10 lines
245 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
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;
});