UNPKG

nlu

Version:

Use this package to link your projects together for local development.

8 lines (5 loc) 191 B
'use strict'; import async = require( 'async'); import {EVCb} from "./index"; export type Task = (cb: EVCb<any>) => void; export const q = async.queue<Task,any>((task, cb) => task(cb), 2);