UNPKG

custom-idle-queue

Version:

Optimize the speed of important tasks on limited ressources

13 lines (12 loc) 347 B
/** * because babel can only export on default-attribute, * we use this for the non-module-build * this ensures that users do not have to use * var IdleQueue = require('custom-idle-queue').default; * but * var IdleQueue = require('custom-idle-queue'); */ import { IdleQueue } from './index.js'; module.exports = { IdleQueue: IdleQueue };