Welcome to mirror list, hosted at ThFree Co, Russian Federation.

defer.js « lodash « __mocks__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9325cb28ba6fdc144b20722969779c830059b117 (plain)
1
2
3
4
5
/**
 * Instead of messing around with timers, we execute deferred functions
 * immediately in our specs
 */
export default (fn, ...args) => fn(...args);