Skip to content

Commit

Permalink
Don't import/export from the same file twice (#5562)
Browse files Browse the repository at this point in the history
Quiets down an annoying build warning in some configurations
  • Loading branch information
rictic committed Jun 24, 2019
1 parent 9c7492d commit 94585c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils/flush.js
Expand Up @@ -11,8 +11,8 @@ import './boot.js';
/* eslint-disable no-unused-vars */
import { Debouncer } from '../utils/debounce.js'; // used in type annotations
/* eslint-enable no-unused-vars */
import { flushDebouncers } from '../utils/debounce.js'; // used in type annotations
export { enqueueDebouncer } from '../utils/debounce.js'; // used in type annotations
import {enqueueDebouncer, flushDebouncers} from '../utils/debounce.js';
export {enqueueDebouncer};

/**
* Forces several classes of asynchronously queued tasks to flush:
Expand Down

0 comments on commit 94585c3

Please sign in to comment.