No Description

defer.js 227B

1234567
  1. import partial from './partial.js';
  2. import delay from './delay.js';
  3. import _ from './underscore.js';
  4. // Defers a function, scheduling it to run after the current call stack has
  5. // cleared.
  6. export default partial(delay, _, 1);